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>
7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
/**
|
|
* Ecommerce Controllers Index
|
|
* @module Ecommerce
|
|
*/
|
|
|
|
export { default as ecommerceController } from './ecommerce.controller';
|