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