You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
126 B

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