mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
19 lines
315 B
TypeScript
19 lines
315 B
TypeScript
|
import { NextResponse } from "next/server";
|
||
|
import { createClient } from "@/utils/supabase/server";
|
||
|
|
||
|
|
||
|
enum customTypeOptions
|
||
|
{
|
||
|
Free,
|
||
|
Tier1,
|
||
|
Tier2,
|
||
|
Tier3
|
||
|
}
|
||
|
|
||
|
export async function GET(request: Request) {
|
||
|
const supabase = createClient();
|
||
|
|
||
|
return NextResponse.json(customTypeOptions);
|
||
|
}
|
||
|
|
||
|
|