summaryrefslogtreecommitdiff
path: root/router.go
diff options
context:
space:
mode:
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))