Files
v0-v0app/app/api/health/route.ts

13 lines
244 B
TypeScript
Raw Permalink Normal View History

import { NextResponse } from "next/server"
export async function GET() {
return NextResponse.json(
{
status: "healthy",
timestamp: new Date().toISOString(),
service: "markdown-editor",
},
{ status: 200 },
)
}