From a23d11e7a73c5f9cd223621be2ac63ed53b75e48 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 9 Feb 2023 20:16:49 +0100 Subject: 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. --- router.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'router.go') 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) } } } -- cgit v1.2.3-70-g09d2