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