diff options
Diffstat (limited to 'mux.go')
-rw-r--r-- | mux.go | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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) } |