blob: c7566728dd6f6bf287bfc34ee8d9d315d90157e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package config
var (
Provider = ""
ApplicationName = ""
BinaryName = ""
Auth = ""
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("")
|