cc-core-cli
Version:
Command Line Interface tool for generating project templates for the (Your Platform's Name) platform.
29 lines (23 loc) • 838 B
text/typescript
/***
* This example structure when developer config custom module
* const CUSTOM_MODULES = [
* { module: CarriersModule, services: [CarrierCarrierService, CarrierLogService] },
* { module: CustomersModule, services: [CustomerService, AddressService] },
* { module: ProductsModule, services: [ProductService] },
* { module: OrdersModule, services: [ChannelService, OrderService, OrderItemService] }
* ];
*
* const EXTERNAL_CUSTOM_MODULES = [
* { external: true, module_code: "external_module_code", domain: "external_module_domain" },
* ];
* example:
* {
* external: true,
* module_code: "module_code_from_module.json",
* domain: "http://localhost:3001"
* }
export { CUSTOM_MODULES };
*/
const CUSTOM_MODULES = [];
const EXTERNAL_CUSTOM_MODULES = [];
export { CUSTOM_MODULES, EXTERNAL_CUSTOM_MODULES };