Files
2026-05-02 13:38:05 -07:00

10 lines
246 B
TypeScript

export async function getOrgTierData(
orgId: string
): Promise<{ tier: string | null; active: boolean; isTrial: boolean }> {
const tier = null;
const active = false;
const isTrial = false;
return { tier, active, isTrial };
}