package main import ( "net/http" "github.com/gorilla/mux" ) func main() { router := mux.NewRouter().StrictSlash(true) http.ListenAndServe(":8080", router) }