Files
Matthias Hinrichs e68e355e3f
Build Docker Container using Multistage Build / build (push) Failing after 4m17s
feat: Implement WebSocket-based SSH terminal functionality and refactor the frontend using the Tabler.io framework.
2026-02-18 00:38:31 +01:00

11 lines
350 B
Go

package serveractions
// Server struct to hold server information
type Server struct {
Name string `json:"name" mapstructure:"name"`
Mac string `json:"mac" mapstructure:"mac"`
IP string `json:"ip" mapstructure:"ip"`
SSHUser string `json:"ssh_user" mapstructure:"ssh_user"`
SSHPass string `json:"ssh_pass" mapstructure:"ssh_pass"`
}