package locations import ( "github.com/dustinpianalto/quartermaster/internal/utils" "github.com/gorilla/mux" ) func GetRouter() *mux.Router { router := mux.NewRouter().StrictSlash(true) router.Handle("/", utils.RootHandler(locations)) return router }