14 lines
417 B
TypeScript
Executable file
14 lines
417 B
TypeScript
Executable file
/**
|
|
* @lilith/payments
|
|
*
|
|
* Payment processing feature for lilith-platform.
|
|
* Includes Segpay integration, gift cards, subscriptions, and webhooks.
|
|
*
|
|
* Subpath exports:
|
|
* - @lilith/payments/providers - Shared types and interfaces
|
|
* - @lilith/payments/frontend - React hooks and components
|
|
* - @lilith/payments/backend - NestJS services
|
|
*/
|
|
|
|
// Re-export everything for convenience
|
|
export * from './providers'
|