17 lines
313 B
Go
17 lines
313 B
Go
package config
|
|
|
|
var defaultConfig = Config{
|
|
Node: NodeConfig{
|
|
ListenOn: "0.0.0.0",
|
|
Port: 56714,
|
|
KeepaliveInterval: 1,
|
|
LogLevel: LogLevelInfo,
|
|
},
|
|
Configs: Configs{
|
|
Master: MasterConfig{
|
|
ObserverInterval: 10,
|
|
BackoffSeconds: 2,
|
|
BackoffCount: 3,
|
|
},
|
|
},
|
|
}
|