17 lines
418 B
TypeScript
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' });
|
|
} |