6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
|
||
|
|
export async function GET() {
|
||
|
|
return NextResponse.json({ status: 'ok', timestamp: new Date().toISOString() }, { status: 200 });
|
||
|
|
}
|