Files
core/http/api/cluster.go
2022-09-28 21:49:25 +02:00

17 lines
364 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"`
ID string `json:"id"`
LastUpdate int64 `json:"last_update"`
State string `json:"state"`
}
type ClusterNodeFiles map[string][]string