11 lines
276 B
TypeScript
11 lines
276 B
TypeScript
/**
|
|
* Customer Domain - Providers
|
|
*
|
|
* Providers handle mapping from external systems to domain types:
|
|
* - Portal: Prisma (portal DB) → UserAuth
|
|
* - Whmcs: WHMCS API → WhmcsClient
|
|
*/
|
|
|
|
export * as Portal from "./portal/index";
|
|
export * as Whmcs from "./whmcs/index";
|