We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29603a7 commit 9633f5fCopy full SHA for 9633f5f
src/app/api/ping/down/route.js
@@ -0,0 +1,5 @@
1
+import { NextResponse } from "next/server";
2
+
3
+export async function POST() {
4
+ return NextResponse.json({ message: "Ping Down - Server Shutdown" });
5
+}
src/app/api/ping/up/route.js
+ return NextResponse.json({ message: "Ping Up - Server Started" });
0 commit comments