platform-codebase/features/payments/backend-api/index.ts
2026-01-18 17:19:29 -08:00

14 lines
416 B
TypeScript
Executable file

/**
* Payments Backend
*
* NestJS microservice for payment processing with Segpay.
* Handles subscriptions, transactions, gift cards, and webhooks.
*/
export * from './payments.module'
export * from './segpay'
export * from './webhooks'
export * from './gift-cards'
export * from './services'
// providers module re-exports gift card types which conflicts with gift-cards module
// export * from './providers'