's'
This commit is contained in:
11
app/api/health/route.ts
Normal file
11
app/api/health/route.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { NextResponse } from 'next/server'
|
||||
export const runtime = 'edge'
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({
|
||||
app:'NavSphere',
|
||||
status: 'ok',
|
||||
timestamp: new Date().toISOString(),
|
||||
uptime: process.uptime()
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user