globalsettings.go 389 B

123456789
  1. package global_settings
  2. // globalsettings - settings that are global in nature. Avoids circular dependencies between config loading and usage.
  3. // PublicIPServices - the list of user-specified IP services to use to obtain the node's public IP
  4. var PublicIPServices map[string]string = make(map[string]string)
  5. // User - holds a user string for joins when using basic auth
  6. var User string