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