Files
EdgeNode/internal/configs/cluster_config.go
2020-10-17 11:14:40 +08:00

11 lines
201 B
Go

package configs
// 集群配置
type ClusterConfig struct {
RPC struct {
Endpoints []string `yaml:"endpoints"`
} `yaml:"rpc"`
ClusterId string `yaml:"clusterId"`
Secret string `yaml:"secret"`
}