Skip to content

Commit 02257e7

Browse files
committed
Add health and ready endpoints
1 parent dd0d46d commit 02257e7

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { NextResponse } from 'next/server';
2+
3+
export async function GET() {
4+
return NextResponse.json({ status: 'ok' }, { status: 200 });
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { NextResponse } from 'next/server';
2+
3+
export async function GET() {
4+
return NextResponse.json({ status: 'ok' }, { status: 200 });
5+
}

0 commit comments

Comments
 (0)