diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -49,6 +49,9 @@ func startServer(addr string) *http.Server { r.HandleFunc("/recipes/{id}/edit", view.RecipeEditHandler).Methods(`GET`) r.HandleFunc("/recipes/{id}", controller.RecipePost).Methods(`POST`) + r.HandleFunc("/recipes/{id}/steps/{step_id}", + view.HandlerHTML(&model.RecipeStep{})).Methods(`GET`) + r.HandleFunc("/", view.HandlerHTML(&model.Index{})).Methods(`GET`) muxer := http.NewServeMux() |