mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 23:16:38 +00:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import { Tier } from "@server/types/Tiers";
|
|
|
|
export async function isSubscribed(
|
|
orgId: string,
|
|
tiers: Tier[]
|
|
): Promise<boolean> {
|
|
return false;
|
|
}
|