summaryrefslogtreecommitdiff
path: root/router.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-08 22:27:15 +0100
committerxengineering <me@xengineering.eu>2023-02-08 22:27:49 +0100
commitf18293689c48edbdcac7f636f7edd1e1407fee35 (patch)
tree1baaacf2c15a552f01ee0a8b025e81d8457c4b9c /router.go
parentf9a5140071703faf0c7515a05f52e69fdc1f11ba (diff)
downloadceres-f18293689c48edbdcac7f636f7edd1e1407fee35.tar
ceres-f18293689c48edbdcac7f636f7edd1e1407fee35.tar.zst
ceres-f18293689c48edbdcac7f636f7edd1e1407fee35.zip
Test mux concept with index handler
Diffstat (limited to 'router.go')
-rw-r--r--router.go14
1 files changed, 13 insertions, 1 deletions
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))