2023-08-17 20:55:56 -06:00
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
2023-08-28 00:31:47 -06:00
|
|
|
export const runtime = "edge";
|
2023-08-17 20:55:56 -06:00
|
|
|
|
2023-08-28 00:31:47 -06:00
|
|
|
function handler() {
|
2023-08-17 20:55:56 -06:00
|
|
|
return NextResponse.json(
|
|
|
|
{ message: "Public Pong!" },
|
|
|
|
{ status: 200, statusText: "SUCCESS" }
|
|
|
|
);
|
|
|
|
}
|
2023-08-28 00:31:47 -06:00
|
|
|
|
|
|
|
export { handler as GET };
|