mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-14 12:08:11 +00:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
export async function createCustomer(
|
|
orgId: string,
|
|
email: string | null | undefined
|
|
): Promise<string | undefined> {
|
|
return;
|
|
}
|