From f18293689c48edbdcac7f636f7edd1e1407fee35 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 8 Feb 2023 22:27:15 +0100 Subject: Test mux concept with index handler --- router.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'router.go') diff --git a/router.go b/router.go index 6985780..a75988b 100644 --- a/router.go +++ b/router.go @@ -6,9 +6,21 @@ import ( "net/http" ) +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 + } + } +} + func RunServer(config HttpConfig, db *Database) { - http.HandleFunc("/", index(db, config.Templates)) + http.HandleFunc("/", indexMux(db, config.Templates)) http.HandleFunc("/recipe", recipe(db, config.Templates)) -- cgit v1.2.3-70-g09d2