api.rb 126 B

12345678
  1. module Mastodon
  2. class API < Grape::API
  3. rescue_from :all
  4. mount Mastodon::Ostatus
  5. mount Mastodon::Rest
  6. end
  7. end