diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,7 @@ import ( "os/signal" "syscall" + "xengineering.eu/ceres/controller" "xengineering.eu/ceres/model" "xengineering.eu/ceres/view" @@ -45,6 +46,8 @@ func startServer(addr string) *http.Server { Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) r.HandleFunc("/recipes/{id}", view.HandlerHTML(&model.Recipe{})).Methods(`GET`) + r.HandleFunc("/recipes/{id}/edit", view.RecipeEditHandler).Methods(`GET`) + r.HandleFunc("/recipes/{id}", controller.RecipePost).Methods(`POST`) r.HandleFunc("/", view.HandlerHTML(&model.Index{})).Methods(`GET`) |