about summary refs log tree commit diff
path: root/lib/cli.rb
blob: 7e82806b66196f0ae26ec15a2ed51dd186a6d202 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'thor'
require_relative 'mastodon/media_cli'

module Mastodon
  class CLI < Thor
    desc 'media SUBCOMMAND ...ARGS', 'manage media files'
    subcommand 'media', Mastodon::MediaCLI
  end
end