pollo/src/pages/api/public/ping.ts
2023-08-17 20:55:56 -06:00

13 lines
266 B
TypeScript

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