summaryrefslogtreecommitdiff
path: root/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'router.go')
-rw-r--r--router.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/router.go b/router.go
index a75988b..508d23d 100644
--- a/router.go
+++ b/router.go
@@ -7,13 +7,12 @@ import (
)
func indexMux(db *Database, templateRoot string) func(http.ResponseWriter, *http.Request) {
-
return func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
indexGet(w, r, db, templateRoot)
default:
- // TODO
+ http.Error(w, "Bad Request", 400)
}
}
}