mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-14 12:08:11 +00:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
export async function getOrgTierData(
|
|
orgId: string
|
|
): Promise<{ tier: string | null; active: boolean }> {
|
|
const tier = null;
|
|
const active = false;
|
|
|
|
return { tier, active };
|
|
}
|