summaryrefslogtreecommitdiff
path: root/branding/template
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2019-07-01 19:37:46 +0200
committerRuben Pollan <meskio@sindominio.net>2019-08-05 11:46:00 -0400
commit3cb8f572154d00c742f3a114f08374f09b5103d3 (patch)
treea29f6cf5eac5062c451d1d9be4d1d598245edace /branding/template
parent336cae5cdf073b74df702c6220504ea0a463469b (diff)
[refactor] rename things
Diffstat (limited to 'branding/template')
-rw-r--r--branding/template/config.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/branding/template/config.go b/branding/template/config.go
new file mode 100644
index 0000000..c3a9a33
--- /dev/null
+++ b/branding/template/config.go
@@ -0,0 +1,32 @@
+/*
+ DO NOT EDIT --------------------------------------------------
+
+ This file has been automatically generated by `go generate`.
+ Any changes will be overriden.
+
+ DO NOT EDIT --------------------------------------------------
+*/
+
+package config
+
+/* All these constants are defined in the vendor.conf file
+*/
+const (
+ Provider = "$providerURL"
+ ApplicationName = "$applicationName"
+ BinaryName = "$binaryName"
+ DonateURL = "$donateURL"
+ HelpURL = "$helpURL"
+ TosURL = "$tosURL"
+ APIURL = "$apiURL"
+ GeolocationAPI = "$geolocationAPI"
+)
+
+/*
+
+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(`$caCertString`)