26 lines
735 B
Go
26 lines
735 B
Go
|
package config
|
||
|
|
||
|
// server settings
|
||
|
const serverListen = "server.listen"
|
||
|
const serverPort = "server.port"
|
||
|
|
||
|
// client settings
|
||
|
const ipProviderUrl = "ip-provider.url"
|
||
|
const dyndnsUsername = "dyndns-provider.username"
|
||
|
const dyndnsPassword = "dyndns-provider.password"
|
||
|
const dyndnsHostname = "dyndns-provider.hostname"
|
||
|
const dyndnsUrl = "dyndns-provider.url"
|
||
|
|
||
|
// notificaton settings
|
||
|
const notificatonEnabled = "notification.enabled"
|
||
|
const notificationUsername = "notification.username"
|
||
|
const notificationPassword = "notification.password"
|
||
|
const notificationUrl = "notification.url"
|
||
|
const notificationTopic = "notification.topic"
|
||
|
|
||
|
// other settings
|
||
|
const interval = "interval"
|
||
|
const yaml = "yaml"
|
||
|
const help = "help"
|
||
|
const debug = "debug"
|