func Setup(router *mux.Router) { subRouter := router.PathPrefix("/domain").Subrouter() util.SetupRouter(subRouter, "Domain", routes) }
func Setup(router *mux.Router) { subRouter := router.PathPrefix("/notifications").Subrouter() util.SetupRouter(subRouter, "Notifications", routes) }
func Setup(router *mux.Router) { subRouter := router.PathPrefix("/links").Subrouter() util.SetupRouter(subRouter, "Link", routes) }
func Setup(router *mux.Router) { subRouter := router.PathPrefix("/auth").Subrouter() utils.SetupRouter(subRouter, "Auth", routes) }
func Setup(router *mux.Router) { subRouter := router.PathPrefix("/watchers").Subrouter() util.SetupRouter(subRouter, "Watchers", routes) }
func Setup(router *mux.Router) { subRouter := router.PathPrefix("/records").Subrouter() util.SetupRouter(subRouter, "Records", routes) util.SetupRouter(router, "RecordsOverload", overloadRoutes) }