mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 08:41:42 +01:00
8 lines
126 B
Ruby
8 lines
126 B
Ruby
module Mastodon
|
|
class API < Grape::API
|
|
rescue_from :all
|
|
|
|
mount Mastodon::Ostatus
|
|
mount Mastodon::Rest
|
|
end
|
|
end
|