Spaces:
Running
Running
Add the simplest healthcheck route (#1089)
Browse files
src/routes/healthcheck/+server.ts
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
export async function GET() {
|
2 |
+
return new Response("OK", { status: 200 });
|
3 |
+
}
|