erp-retail-backend-v2/src/modules/ecommerce/controllers/index.ts
Adrian Flores Cortes c6b8ab019a [ERP-RETAIL] feat(ecommerce): Add cart, order, and shipping services with controller
Implement complete ecommerce backend:
- CartService: cart CRUD, items, coupons, shipping, cart merging
- EcommerceOrderService: order creation, payment, shipping, fulfillment workflow
- ShippingRateService: rate calculation with geo/product/customer restrictions
- EcommerceController: REST API endpoints for all ecommerce operations

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 18:01:06 -06:00

7 lines
134 B
TypeScript

/**
* Ecommerce Controllers Index
* @module Ecommerce
*/
export { default as ecommerceController } from './ecommerce.controller';