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.

15 lines
372 B

  1. # frozen_string_literal: true
  2. require 'thor'
  3. require_relative 'mastodon/media_cli'
  4. require_relative 'mastodon/emoji_cli'
  5. module Mastodon
  6. class CLI < Thor
  7. desc 'media SUBCOMMAND ...ARGS', 'manage media files'
  8. subcommand 'media', Mastodon::MediaCLI
  9. desc 'emoji SUBCOMMAND ...ARGS', 'manage custom emoji'
  10. subcommand 'emoji', Mastodon::EmojiCLI
  11. end
  12. end