feat: Initial commit of the server management tool

This commit is contained in:
Matthias
2025-09-08 20:36:50 +02:00
commit 75406bd56c
8 changed files with 474 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
package serveractions
// Server struct to hold server information
type Server struct {
Name string `json:"name"`
Mac string `json:"mac"`
IP string `json:"ip"`
SSHUser string `json:"ssh_user"`
SSHPass string `json:"ssh_pass"`
}