nsarrazin HF staff commited on
Commit
6d91018
1 Parent(s): ddbe7d2

Add the simplest healthcheck route (#1089)

Browse files
Files changed (1) hide show
  1. src/routes/healthcheck/+server.ts +3 -0
src/routes/healthcheck/+server.ts ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ export async function GET() {
2
+ return new Response("OK", { status: 200 });
3
+ }