class Steep::CLI

def setup_command

def setup_command
  @command = argv.shift&.to_sym
  if CLI.available_commands.include?(@command) || @command == :worker
    true
  else
    stderr.puts "Unknown command: #{command}"
    stderr.puts "  available commands: #{CLI.available_commands.join(', ')}"
    false
  end
end