21 lines
360 B
Go
21 lines
360 B
Go
package raft
|
|
|
|
type NodeStore map[string]*NodeStoreInfo
|
|
|
|
type NodeStoreInfo struct {
|
|
IpManagement string
|
|
Alive bool
|
|
Scoring int
|
|
}
|
|
|
|
type DomainStore struct {
|
|
Config string `json:"config"`
|
|
State int `json:"state"`
|
|
Migrate bool `json:"Migrate"`
|
|
}
|
|
|
|
type SchemaDomain struct {
|
|
Config string `json:"config"`
|
|
State int `json:"state"`
|
|
}
|