Server ssh works!!

This commit is contained in:
Your Name
2025-04-25 22:00:41 +12:00
parent 1d8502d71a
commit 5d7a22794d
6 changed files with 84 additions and 23 deletions

View File

@ -8,20 +8,20 @@
namespace dropshell {
// Server information structure
struct ServerInfo {
std::string name;
std::string ssh_host;
std::string ssh_user;
std::string ssh_port;
};
// Server information structure
struct ServerInfo {
std::string name;
std::string ssh_host;
std::string ssh_user;
std::string ssh_port;
};
std::vector<ServerInfo> get_configured_servers();
void list_servers();
void show_server_details(const std::string& server_name);
void create_server(const std::string& server_name);
std::vector<ServerInfo> get_configured_servers();
void list_servers();
void show_server_details(const std::string& server_name);
void create_server(const std::string& server_name);
} // namespace dropshell
#endif // SERVERS_HPP