Skip to content

Commit 6d91018

Browse files
authored
Add the simplest healthcheck route (#1089)
1 parent ddbe7d2 commit 6d91018

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/routes/healthcheck/+server.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export async function GET() {
2+
return new Response("OK", { status: 200 });
3+
}

0 commit comments

Comments
 (0)