pollo/app/api/external/public/ping/route.ts
2023-09-24 23:49:24 -06:00

13 lines
278 B
TypeScript

import { NextResponse } from "next/server";
export const runtime = "edge";
export const preferredRegion = ["pdx1"];
function handler() {
return NextResponse.json(
{ message: "Public Pong!" },
{ status: 200, statusText: "SUCCESS" }
);
}
export { handler as GET };