From 8686078ae801fdc15df5a40ee158a43373d37c1c Mon Sep 17 00:00:00 2001 From: bndw Date: Wed, 26 Apr 2023 17:49:25 -0700 Subject: Initial commit --- app/api/hello/route.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 app/api/hello/route.ts (limited to 'app/api/hello/route.ts') diff --git a/app/api/hello/route.ts b/app/api/hello/route.ts new file mode 100644 index 0000000..d1cc6ee --- /dev/null +++ b/app/api/hello/route.ts @@ -0,0 +1,3 @@ +export async function GET(request: Request) { + return new Response('Hello, Next.js!') +} -- cgit v1.2.3