summaryrefslogtreecommitdiff
path: root/web/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'web/router.go')
-rw-r--r--web/router.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/router.go b/web/router.go
index 5b972c2..ec67399 100644
--- a/web/router.go
+++ b/web/router.go
@@ -14,6 +14,8 @@ func RunServer(config utils.HttpConfig, db *utils.Database) {
http.HandleFunc("/recipe", recipe(db, config.Templates))
+ http.HandleFunc("/recipe/edit", recipe_edit(db, config.Templates))
+
http.HandleFunc("/recipe/image", image(config.Storage))
http.HandleFunc("/add_recipes", add_recipes(db, config.Storage, config.Static))