UNPKG

cloud-ide-lms-model

Version:

Package for Model management of Cloud IDEsys LMS

18 lines (17 loc) 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.commonRoutesUrl = void 0; /** * Object containing URLs for common utility endpoints. * These URLs are used for various common operations such as ObjectId generation, etc. */ const commonRoutesUrl = { module: 'common', /** Endpoint to generate a single ObjectId */ generateObjectId: "generate-object-id", /** Endpoint to generate multiple ObjectIds */ generateObjectIds: "generate-object-ids" }; exports.commonRoutesUrl = commonRoutesUrl; // Freeze the commonRoutesUrl object to prevent modifications Object.freeze(commonRoutesUrl);