about summary refs log tree commit diff
path: root/app/api/mastodon/api.rb
blob: 39469dc65ab186660e8bf09a5f6da93d48b3b8cf (plain) (blame)
1
2
3
4
5
6
7
8
module Mastodon
  class API < Grape::API
    rescue_from :all

    mount Mastodon::Ostatus
    mount Mastodon::Rest
  end
end