package location import "github.com/gorilla/mux" func GetRouter() *mux.Router { router := mux.NewRouter().StrictSlash(true) router.HandleFunc("/", location).Methods("GET") return router }