summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index 0d84eef..e7acac1 100644
--- a/main.go
+++ b/main.go
@@ -44,6 +44,8 @@ func startServer(addr string) *http.Server {
r.PathPrefix("/static/").
Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static))))
+ r.HandleFunc("/recipes/{id}", view.HandlerHTML(&model.Recipe{})).Methods(`GET`)
+
r.HandleFunc("/", view.HandlerHTML(&model.Index{})).Methods(`GET`)
muxer := http.NewServeMux()