From 99a8f3c8ac28f6e19f6af2358ba02ca7613c9edf Mon Sep 17 00:00:00 2001 From: Deven Perez Date: Tue, 19 Aug 2025 22:09:52 -0400 Subject: [PATCH] Health endpoint --- src/app/health/route.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/app/health/route.ts diff --git a/src/app/health/route.ts b/src/app/health/route.ts new file mode 100644 index 0000000..20fe452 --- /dev/null +++ b/src/app/health/route.ts @@ -0,0 +1,5 @@ +export async function GET(request: Request) { + return new Response('OK', { + status: 200, + }) +} \ No newline at end of file