compute/pkg/api/raft/schema.go

20 lines
340 B
Go

package raft
type NodeStore map[string]NodeStoreInfo
type NodeStoreInfo struct {
IpManagement string
Scoring int
}
type SchemaDomain struct {
Config string `json:"config"`
State int `json:"state"`
}
type DomainStore struct {
Config string `json:"config"`
State int `json:"state"`
Migrate bool `json:"Migrate"`
}