diff options
Diffstat (limited to 'mux.go')
-rw-r--r-- | mux.go | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -33,6 +33,17 @@ func recipeEditMux(w http.ResponseWriter, r *http.Request) { } } +func recipeConfirmDeletionMux(w http.ResponseWriter, r *http.Request) { + switch r.Method { + case "GET": + recipeConfirmDeletionGet(w, r) + case "POST": + recipeConfirmDeletionPost(w, r) + default: + http.Error(w, "Bad Request", 400) + } +} + func addRecipesMux(w http.ResponseWriter, r *http.Request) { switch r.Method { case "GET": |