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.
2 parents 29603a7 + 9633f5f commit 96b430aCopy full SHA for 96b430a
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