The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

24 lines
655 B

  1. # frozen_string_literal: true
  2. require 'thor'
  3. require_relative 'mastodon/media_cli'
  4. require_relative 'mastodon/emoji_cli'
  5. require_relative 'mastodon/accounts_cli'
  6. require_relative 'mastodon/feeds_cli'
  7. module Mastodon
  8. class CLI < Thor
  9. desc 'media SUBCOMMAND ...ARGS', 'Manage media files'
  10. subcommand 'media', Mastodon::MediaCLI
  11. desc 'emoji SUBCOMMAND ...ARGS', 'Manage custom emoji'
  12. subcommand 'emoji', Mastodon::EmojiCLI
  13. desc 'accounts SUBCOMMAND ...ARGS', 'Manage accounts'
  14. subcommand 'accounts', Mastodon::AccountsCLI
  15. desc 'feeds SUBCOMMAND ...ARGS', 'Manage feeds'
  16. subcommand 'feeds', Mastodon::FeedsCLI
  17. end
  18. end