Files
ftdl/app/api/config/route.ts
2026-03-05 12:54:31 +08:00

9 lines
176 B
TypeScript

import { NextResponse } from 'next/server';
import { APK_TABS } from '@/lib/constants';
export async function GET() {
return NextResponse.json({
tabs: APK_TABS,
});
}