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