aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app')
-rw-r--r--apps/web/app/api/health/route.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/web/app/api/health/route.ts b/apps/web/app/api/health/route.ts
deleted file mode 100644
index 8e5326c6..00000000
--- a/apps/web/app/api/health/route.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import { NextRequest, NextResponse } from "next/server";
-
-export const GET = async (_req: NextRequest) => {
- return NextResponse.json({
- status: "ok",
- message: "Web app is working",
- });
-};