mongodb-stitch
Version:
[](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
15 lines • 713 B
JavaScript
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