mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
add health check endpoint
This commit is contained in:
parent
5076ee7f05
commit
a79c162d9c
1 changed files with 6 additions and 0 deletions
6
packages/web/src/app/api/(server)/health/route.ts
Normal file
6
packages/web/src/app/api/(server)/health/route.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
'use server';
|
||||
|
||||
export const GET = async () => {
|
||||
return Response.json({ status: 'ok' });
|
||||
}
|
||||
|
||||
Loading…
Reference in a new issue