This commit is contained in:
Dhravya Shah 2024-07-17 20:39:27 -05:00
parent 8652405fbd
commit c45268d895

View file

@ -0,0 +1,7 @@
import { NextRequest } from "next/server";
export const runtime = "edge";
export async function GET(req: NextRequest) {
return new Response("Hello, World!");
}