Since we're already using firebase I am surprised there is not an API we

This commit is contained in:
Derek Slenk 2025-06-26 22:20:37 +00:00
parent 5387f3ff01
commit 59cee0f58f

View file

@ -0,0 +1,5 @@
import { NextResponse } from 'next/server';
export async function GET(request: Request) {
return NextResponse.json({ message: 'Hello from the API!' });
}