mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-29 15:21:09 -06:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
export async function getOrgTierData(
|
|
orgId: string
|
|
): Promise<{ tier: string | null; active: boolean }> {
|
|
let tier = null;
|
|
let active = false;
|
|
|
|
return { tier, active };
|
|
}
|