codeverse / app /api /ping /route.ts
shubhjn's picture
add keep alive mech
8f59f83
import { NextResponse } from "next/server";
export const dynamic = "force-dynamic";
export async function GET() {
return NextResponse.json({
status: "ok",
timestamp: new Date().toISOString(),
message: "Pong! Space is awake."
});
}