From f883a92b5d512fa99add76be79bef343b632a8cc Mon Sep 17 00:00:00 2001 From: Derek Slenk Date: Fri, 27 Jun 2025 01:24:38 +0000 Subject: [PATCH] We should probably clean up the errorneous /api/hello endpoint you accid --- src/app/api/hello/route.ts | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 src/app/api/hello/route.ts diff --git a/src/app/api/hello/route.ts b/src/app/api/hello/route.ts deleted file mode 100644 index 55e747d..0000000 --- a/src/app/api/hello/route.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { NextResponse } from 'next/server'; - -export async function GET(request: Request) { - return NextResponse.json({ message: 'Hello from the API!' }); -}