package api import ( "github.com/dustinpianalto/quartermaster/internal/utils" "github.com/dustinpianalto/quartermaster/pkg/api/users" "github.com/gorilla/mux" ) func GetRouter() *mux.Router { router := mux.NewRouter().StrictSlash(true) router.HandleFunc("/", healthcheck).Methods("GET") router.HandleFunc("/healthcheck", healthcheck).Methods("GET") utils.Mount(router, "/users", users.GetRouter()) return router }