11 lines
282 B
TypeScript
11 lines
282 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.js";
|
|
export * as Whmcs from "./whmcs/index.js";
|