summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index be9de22..2d64ada 100644
--- a/main.go
+++ b/main.go
@@ -117,7 +117,8 @@ func main() {
log.Println("Registering handlers")
http.HandleFunc("/{$}", handleIndex)
- http.HandleFunc("/export", handleExport)
+ http.HandleFunc("/export/choices", handleExportChoices)
+ http.HandleFunc("/export/students", handleExportStudents)
http.HandleFunc("/auth", handleAuth)
http.HandleFunc("/ws", handleWs)
http.HandleFunc("/state/{s}", handleState)