This commit is contained in:
Your Name
2025-04-21 11:47:07 +12:00
parent 0eacb838ce
commit a718f23375
11 changed files with 235 additions and 10 deletions

View File

@ -51,7 +51,16 @@ int main(int argc, char* argv[]) {
dropshell::check_status();
return 0;
} else if (cmd == "servers") {
dropshell::list_servers();
if (argc > 2) {
// Show details for specific server
dropshell::show_server_details(argv[2]);
} else {
// List all servers
dropshell::list_servers();
}
return 0;
} else if (cmd == "templates") {
dropshell::list_templates();
return 0;
} else if (cmd == "init") {
if (!vm.count("directory")) {