dropshell/src/servers.hpp
2025-04-23 21:50:04 +12:00

23 lines
357 B
C++

#ifndef SERVERS_HPP
#define SERVERS_HPP
#include <string>
#include <vector>
namespace dropshell {
// 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();
} // namespace dropshell
#endif // SERVERS_HPP