prmbr-image-mksaas/src/app/api/ping/route.ts
2025-06-24 23:48:43 +08:00

10 lines
247 B
TypeScript

import { NextResponse } from 'next/server';
/**
* It is used to check if the server is running.
* You can use tools like Uptime Kuma to monitor this endpoint.
*/
export async function GET() {
return NextResponse.json({ message: 'pong' });
}