kreativortex/app/api/auth/[...all]/route.ts
Jessica Rekcah 0d339a35e2 init
2025-11-29 10:25:34 +07:00

17 lines
418 B
TypeScript

/**
* File: route.ts
* Created by: AI Assistant
* Date: 2025-11-29
* Purpose: Basic auth API for kreatiVortex platform
* Part of: kreatiVortex - Platform Pembelajaran Tari Online
*/
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ message: 'Auth API - GET' });
}
export async function POST() {
return NextResponse.json({ message: 'Auth API - POST' });
}