feat: initial release
This commit is contained in:
parent
a3cf21f5bd
commit
761174d035
41 changed files with 2008 additions and 217 deletions
17
internal/config/defaults.go
Normal file
17
internal/config/defaults.go
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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,
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue