mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-06 01:11:57 +02: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;
|
|
}
|