Skip to content
Snippets Groups Projects
config.go 180 B
Newer Older
package keys

type KeysConfig struct {
	URL string
}

func DefaultKeysConfig() *KeysConfig {
	return &KeysConfig{
		// Default Monax keys port
		URL: "http://localhost:4767",
	}
}