From 372a6e991b8eae1a8565a73a32731a92d876b084 Mon Sep 17 00:00:00 2001 From: Kiruthik <147307440+kiruthikpurpose@users.noreply.github.com> Date: Tue, 17 Sep 2024 18:07:15 +0530 Subject: [PATCH] Delete app/api/hello directory --- app/api/hello/route.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 app/api/hello/route.ts diff --git a/app/api/hello/route.ts b/app/api/hello/route.ts deleted file mode 100644 index dbb6f31..0000000 --- a/app/api/hello/route.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NextResponse } from "next/server"; - -export function GET() { - return NextResponse.json({ - message: "Hello, world!", - }); -}