lifetracker/apps/web/app/api/health/route.ts

9 lines
199 B
TypeScript

import { NextRequest, NextResponse } from "next/server";
export const GET = async (_req: NextRequest) => {
return NextResponse.json({
status: "ok",
message: "Web app is working",
});
};