Skip to content
Snippets Groups Projects
config.go 307 B
Newer Older
	GRPCServiceEnabled bool
	RemoteAddress      string
	KeysDirectory      string
}

func DefaultKeysConfig() *KeysConfig {
	return &KeysConfig{
		// Default Monax keys port
		GRPCServiceEnabled: true,
		RemoteAddress:      "",
		KeysDirectory:      DefaultKeysDir,