UNPKG

mongodb-stitch

Version:

[![Join the chat at https://gitter.im/mongodb/stitch](https://badges.gitter.im/mongodb/stitch.svg)](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

15 lines 713 B
import StitchServiceRoutes from "../../services/internal/StitchServiceRoutes"; import StitchAppAuthRoutes from "./StitchAppAuthRoutes"; import { getAppMetadataRoute, getFunctionCallRoute } from "./StitchRoutes"; var StitchAppRoutes = (function () { function StitchAppRoutes(clientAppId) { this.clientAppId = clientAppId; this.authRoutes = new StitchAppAuthRoutes(clientAppId); this.serviceRoutes = new StitchServiceRoutes(clientAppId); this.appMetadataRoute = getAppMetadataRoute(clientAppId); this.functionCallRoute = getFunctionCallRoute(clientAppId); } return StitchAppRoutes; }()); export default StitchAppRoutes; //# sourceMappingURL=StitchAppRoutes.js.map