package model type Host struct { ID string `json:"id"` Name string `json:"name"` IP string `json:"ip"` OS string `json:"os"` Provider string `json:"provider"` Status string `json:"status"` LastSeen string `json:"lastSeen"` Type string `json:"type"` Hostname string `json:"hostname"` Port int `json:"port"` Username string `json:"username"` AuthType string `json:"authType"` // password | key | both Password string `json:"password,omitempty"` KeyID string `json:"keyId,omitempty"` Group string `json:"group,omitempty"` Tags string `json:"tags,omitempty"` Notes string `json:"notes,omitempty"` }