summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index a546d86..29564ff 100644
--- a/main.go
+++ b/main.go
@@ -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()