mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 08:33:41 +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
|