diff options
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)) |