summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index 9eaebcc..4eb58c2 100644
--- a/main.go
+++ b/main.go
@@ -50,6 +50,7 @@ func main() {
router := mux.NewRouter()
router.PathPrefix("/static").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir(staticpath))))
router.HandleFunc("/register", register)
+ router.HandleFunc("/activate", activate)
http.Handle("/", router)