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 e7acac1..a546d86 100644
--- a/main.go
+++ b/main.go
@@ -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`)