Skip to content

Commit

Permalink
add healthcheck api endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdeep-ghosh committed May 8, 2024
1 parent ced5086 commit a4b95f6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/api/hello/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { NextResponse } from 'next/server';

export function GET() {
return NextResponse.json('world', { status: 200 });
}

0 comments on commit a4b95f6

Please sign in to comment.