mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-14 21:57:49 +08:00
9 lines
389 B
Go
9 lines
389 B
Go
package global_settings
|
|
|
|
// globalsettings - settings that are global in nature. Avoids circular dependencies between config loading and usage.
|
|
|
|
// PublicIPServices - the list of user-specified IP services to use to obtain the node's public IP
|
|
var PublicIPServices map[string]string = make(map[string]string)
|
|
|
|
// User - holds a user string for joins when using basic auth
|
|
var User string
|