dolphins7.skeleton/twenty-cli/lib/twenty/command/down.rb
2023-12-08 10:57:57 -03:00

15 lines
308 B
Ruby

class Twenty::Command::Down < Twenty::Command
set_banner usage: "twenty down [OPTIONS]",
description: "Stop the twenty web server"
def run
options = parse_options(argv)
options.help ? show_help : run_command
end
private
def run_command
warn "[twenty] down..."
end
end