about summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index fcd69a8..c85df46 100644
--- a/main.go
+++ b/main.go
@@ -22,7 +22,7 @@ func main() {
 	// defin the gorilla/mux router with a pathprefix on / routing all requests
 	// to the indexHandler function
 	r := mux.NewRouter()
-	r.HandleFunc("/resetall", resetHandler)
+	r.HandleFunc("/resetall", resetHandler).Methods("POST")
 	r.PathPrefix("/").HandlerFunc(indexHandler)
 
 	// define and start the http server