blob: 7815c96366641303fbf8bbec47e6645dde94a606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package config
var (
Provider = ""
ProviderName = ""
ApplicationName = ""
BinaryName = ""
Auth = ""
DonateURL = ""
AskForDonations = true
HelpURL = ""
TosURL = ""
APIURL = ""
GeolocationAPI = ""
)
var Version string
/*
CaCert : a string containing a representation of the provider CA, used to
sign the webapp and openvpn certificates. should be placed in
config/[provider]-ca.crt
*/
var CaCert = []byte("")
|