mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:11:55 +08:00
12 lines
350 B
Go
12 lines
350 B
Go
package configs
|
|
|
|
// ClusterConfig 集群配置
|
|
type ClusterConfig struct {
|
|
RPC struct {
|
|
Endpoints []string `yaml:"endpoints" json:"endpoints"`
|
|
DisableUpdate bool `yaml:"disableUpdate" json:"disableUpdate"`
|
|
} `yaml:"rpc" json:"rpc"`
|
|
ClusterId string `yaml:"clusterId" json:"clusterId"`
|
|
Secret string `yaml:"secret" json:"secret"`
|
|
}
|