core/http/api/cluster.go
2022-08-03 22:05:28 +02:00

15 lines
276 B
Go

package api
type ClusterNodeConfig struct {
Address string `json:"address"`
Username string `json:"username"`
Password string `json:"password"`
}
type ClusterNode struct {
Address string `json:"address"`
State string `json:"state"`
}
type ClusterNodeFiles []string