pollo/app/api/external/public/ping/route.ts
2023-10-02 19:29:35 -06:00

12 lines
237 B
TypeScript

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