about summary refs log tree commit diff
path: root/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'server.go')
-rw-r--r--server.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/server.go b/server.go
index 928ca83..86df6a5 100644
--- a/server.go
+++ b/server.go
@@ -31,6 +31,7 @@ func main() {
 
 	r.HandleFunc("/", indexHandler)
 	r.HandleFunc("/dumpall", dumpallHandler)
+	r.HandleFunc("/all", printAllHandler)
 	r.HandleFunc("/{station}/{name}", getHandler)
 
 	// Start the http server using the port provided using command line arguments