diff options
author | xengineering <me@xengineering.eu> | 2023-02-08 22:27:15 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-08 22:27:49 +0100 |
commit | f18293689c48edbdcac7f636f7edd1e1407fee35 (patch) | |
tree | 1baaacf2c15a552f01ee0a8b025e81d8457c4b9c /router.go | |
parent | f9a5140071703faf0c7515a05f52e69fdc1f11ba (diff) | |
download | ceres-f18293689c48edbdcac7f636f7edd1e1407fee35.tar ceres-f18293689c48edbdcac7f636f7edd1e1407fee35.tar.zst ceres-f18293689c48edbdcac7f636f7edd1e1407fee35.zip |
Test mux concept with index handler
Diffstat (limited to 'router.go')
-rw-r--r-- | router.go | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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)) |