pollo/src/pages/api/public/ping.ts

14 lines
260 B
TypeScript
Raw Normal View History

2023-08-17 20:55:56 -06:00
import { NextResponse } from "next/server";
export const config = {
runtime: "edge",
regions: ["pdx1"],
};
2023-08-17 20:58:19 -06:00
export default function handler() {
2023-08-17 20:55:56 -06:00
return NextResponse.json(
{ message: "Public Pong!" },
{ status: 200, statusText: "SUCCESS" }
);
}