From 9cfdd2cca03fc23417e54b4e8d16ffa744af55e8 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 7 Feb 2024 07:25:13 -0800 Subject: feat(api): health check endpoint --- src/routes/api/health/+server.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/routes/api/health/+server.ts (limited to 'src') diff --git a/src/routes/api/health/+server.ts b/src/routes/api/health/+server.ts new file mode 100644 index 00000000..66a62024 --- /dev/null +++ b/src/routes/api/health/+server.ts @@ -0,0 +1 @@ +export const GET = () => new Response('OK', { status: 200 }); -- cgit v1.2.3