summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-03-03 17:01:30 +0100
committerxengineering <me@xengineering.eu>2024-03-03 17:01:30 +0100
commit439f49d4afb1f2bfc9a7aaf63bac7c560486c93c (patch)
tree5ba796300aba9a6879b8cc9729fa46f29019abd5 /main.go
parent6a4f1aee179a25b62b02deffd0ad97914cbcca87 (diff)
downloadceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.tar
ceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.tar.zst
ceres-439f49d4afb1f2bfc9a7aaf63bac7c560486c93c.zip
controller: Provide recipe create via HTTP
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index 1660088..1130ddb 100644
--- a/main.go
+++ b/main.go
@@ -47,6 +47,7 @@ func startServer(addr string) *http.Server {
r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`)
+ r.HandleFunc("/recipe", controller.RecipeCreate).Methods(`POST`)
r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead).Methods(`GET`)
r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeUpdate).Methods(`POST`)
r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`)