We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90557d commit c2284ddCopy full SHA for c2284dd
examples/api/src/app/api/hello-world/route.ts
@@ -0,0 +1,7 @@
1
+import { NextRequest, NextResponse } from "next/server";
2
+
3
+export async function GET(request: NextRequest) {
4
+ return NextResponse.json({
5
+ data: "pong",
6
+ });
7
+}
0 commit comments