9 lines
176 B
TypeScript
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,
|
|
});
|
|
}
|