diff options
Diffstat (limited to 'router.go')
-rw-r--r-- | router.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) } } } |