summaryrefslogtreecommitdiff
path: root/mux.go
diff options
context:
space:
mode:
Diffstat (limited to 'mux.go')
-rw-r--r--mux.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/mux.go b/mux.go
index 8c23855..9d9d09a 100644
--- a/mux.go
+++ b/mux.go
@@ -17,8 +17,6 @@ func recipeMux(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
recipeGet(w, r)
- case "POST":
- recipePost(w, r)
default:
http.Error(w, "Bad Request", 400)
}
@@ -39,8 +37,6 @@ func addRecipesMux(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
addRecipesGet(w, r)
- case "POST":
- addRecipesPost(w, r)
default:
http.Error(w, "Bad Request", 400)
}