14 lines
416 B
TypeScript
Executable file
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'
|