1
0
Fork 0
hivemind/internal/config/defaults.go
2026-01-18 19:38:54 +03:00

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,
},
},
}