Files
manage-servers/server-actions/types.go
T

11 lines
245 B
Go

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"`
}