remove tor, remove bitcoing, fix contact us

This commit is contained in:
Andrea Spacca
2021-12-15 09:34:04 +01:00
parent 6f49951bc0
commit 0953383523
7 changed files with 25 additions and 1 deletions

View File

@ -99,6 +99,13 @@ func CorsDomains(s string) OptionFn {
}
// EmailContact sets email contact
func EmailContact(emailContact string) OptionFn {
return func(srvr *Server) {
srvr.emailContact = emailContact
}
}
// GoogleAnalytics sets GA key
func GoogleAnalytics(gaKey string) OptionFn {
return func(srvr *Server) {
@ -339,6 +346,7 @@ type Server struct {
webPath string
proxyPath string
proxyPort string
emailContact string
gaKey string
userVoiceKey string