* Move more tasks to tootctl - tootctl feeds build - tootctl feeds clear - tootctl accounts refresh Clean up exit codes and help messages * Move user modifying to tootctl * Improve user modification through CLI, rename commands add -> create mod -> modify del -> delete To remove ambiguity * Fix code style issues * Fix not being able to unset admin/mod role
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			655 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			655 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'thor'
 | 
						|
require_relative 'mastodon/media_cli'
 | 
						|
require_relative 'mastodon/emoji_cli'
 | 
						|
require_relative 'mastodon/accounts_cli'
 | 
						|
require_relative 'mastodon/feeds_cli'
 | 
						|
 | 
						|
module Mastodon
 | 
						|
  class CLI < Thor
 | 
						|
    desc 'media SUBCOMMAND ...ARGS', 'Manage media files'
 | 
						|
    subcommand 'media', Mastodon::MediaCLI
 | 
						|
 | 
						|
    desc 'emoji SUBCOMMAND ...ARGS', 'Manage custom emoji'
 | 
						|
    subcommand 'emoji', Mastodon::EmojiCLI
 | 
						|
 | 
						|
    desc 'accounts SUBCOMMAND ...ARGS', 'Manage accounts'
 | 
						|
    subcommand 'accounts', Mastodon::AccountsCLI
 | 
						|
 | 
						|
    desc 'feeds SUBCOMMAND ...ARGS', 'Manage feeds'
 | 
						|
    subcommand 'feeds', Mastodon::FeedsCLI
 | 
						|
  end
 | 
						|
end
 |