paper2code-cli / app /health /route.ts
Leon4gr45's picture
Move mandatory endpoints to root /health and /api-docs
b699aa6 verified
Raw
History Blame Contribute Delete
123 Bytes
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ status: 'ok' });
}