mirror of
https://github.com/AndersPier/v0-v0app.git
synced 2025-10-27 18:16:53 +00:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
|
|
import { NextResponse } from "next/server"
|
||
|
|
|
||
|
|
export async function GET() {
|
||
|
|
return NextResponse.json(
|
||
|
|
{
|
||
|
|
status: "healthy",
|
||
|
|
timestamp: new Date().toISOString(),
|
||
|
|
service: "markdown-editor",
|
||
|
|
},
|
||
|
|
{ status: 200 },
|
||
|
|
)
|
||
|
|
}
|