This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-25 04:25:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'thor'
|
|
|
|
require_relative 'mastodon/media_cli'
|
2018-08-26 07:53:06 -07:00
|
|
|
require_relative 'mastodon/emoji_cli'
|
2018-08-25 04:25:39 -07:00
|
|
|
|
|
|
|
module Mastodon
|
|
|
|
class CLI < Thor
|
|
|
|
desc 'media SUBCOMMAND ...ARGS', 'manage media files'
|
|
|
|
subcommand 'media', Mastodon::MediaCLI
|
2018-08-26 07:53:06 -07:00
|
|
|
|
|
|
|
desc 'emoji SUBCOMMAND ...ARGS', 'manage custom emoji'
|
|
|
|
subcommand 'emoji', Mastodon::EmojiCLI
|
2018-08-25 04:25:39 -07:00
|
|
|
end
|
|
|
|
end
|