This commit is contained in:
Your Name
2025-04-21 20:56:54 +12:00
parent b135bed29c
commit 749efef29d
3 changed files with 28 additions and 3 deletions

View File

@ -54,7 +54,7 @@ std::vector<ServerInfo> get_configured_servers() {
void list_servers() {
auto servers = get_configured_servers();
tableprint tp;
tableprint tp("All DropShell Servers");
tp.add_row({"Name", "Address"});
for (const auto& server : servers) {
tp.add_row({server.name, server.ssh_host});