13 lines
270 B
TypeScript
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(),
|
|
});
|
|
}
|