aboutsummaryrefslogtreecommitdiffstats
path: root/icalproxy.go
diff options
context:
space:
mode:
authorLibravatar Rutger Broekhoff2024-11-14 00:27:43 +0100
committerLibravatar Rutger Broekhoff2024-11-14 00:27:43 +0100
commit3d967b586c8b277a5fd2ddc16289856205144036 (patch)
tree24318cd79b977bb03c1b9b7a7247d77fb87388d3 /icalproxy.go
parent14265a959cc3a527ab923731e121d08159872571 (diff)
downloadicalproxy-3d967b586c8b277a5fd2ddc16289856205144036.tar.gz
icalproxy-3d967b586c8b277a5fd2ddc16289856205144036.zip
Fix loading config
Diffstat (limited to 'icalproxy.go')
-rw-r--r--icalproxy.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/icalproxy.go b/icalproxy.go
index cf09e5d..9ca1b33 100644
--- a/icalproxy.go
+++ b/icalproxy.go
@@ -15,7 +15,11 @@ func main() {
15 cfg := loadConfig() 15 cfg := loadConfig()
16 printConfig(&cfg) 16 printConfig(&cfg)
17 17
18 handler := handler{ignore: cfg.Ignore, tokens: cfg.UserTokens} 18 handler := handler{
19 calURL: url.URL(cfg.CalendarURL),
20 ignore: cfg.Ignore,
21 tokens: cfg.UserTokens,
22 }
19 23
20 mux := http.ServeMux{} 24 mux := http.ServeMux{}
21 mux.HandleFunc("/", handler.handle) 25 mux.HandleFunc("/", handler.handle)