9 lines
212 B
Go
9 lines
212 B
Go
|
package refresher
|
||
|
|
||
|
type NodeConfig struct {
|
||
|
MasterHost string `json:"master_host"`
|
||
|
MasterProto string `json:"master_proto"`
|
||
|
MasterToken string `json:"master_token"`
|
||
|
MasterPort int `json:"master_port"`
|
||
|
}
|