Files
skribbl-gartic-color/app/api/health/route.ts
T

13 lines
270 B
TypeScript

import { NextResponse } from "next/server";
export const dynamic = "force-dynamic";
export async function GET() {
return NextResponse.json({
status: "ok",
uptime: Math.floor(process.uptime()),
service: "skribbl-gartic-color",
ts: Date.now(),
});
}