summaryrefslogtreecommitdiff
path: root/router.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-09 20:16:49 +0100
committerxengineering <me@xengineering.eu>2023-02-09 20:16:49 +0100
commita23d11e7a73c5f9cd223621be2ac63ed53b75e48 (patch)
treea7893cbfb01f065217d46bdb4b5c031cbdd6fe4f /router.go
parentf18293689c48edbdcac7f636f7edd1e1407fee35 (diff)
downloadceres-a23d11e7a73c5f9cd223621be2ac63ed53b75e48.tar
ceres-a23d11e7a73c5f9cd223621be2ac63ed53b75e48.tar.zst
ceres-a23d11e7a73c5f9cd223621be2ac63ed53b75e48.zip
Remove errors.go
This commit refactors the codebase. The functionality of the error handling is slightly reduced but the benefit are around 80 lines of code which could be removed.
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)
}
}
}