Files
pangolin/server/lib/billing/createCustomer.ts
2025-10-10 11:27:15 -07:00

7 lines
141 B
TypeScript

export async function createCustomer(
orgId: string,
email: string | null | undefined
): Promise<string | undefined> {
return;
}