Added test api route

master
TZGyn 2 years ago
parent 6bf1d46955
commit 0e3eda75f6
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -0,0 +1,5 @@
import { NextResponse } from 'next/server'
export async function GET(request: Request) {
return NextResponse.json({ message: 'Hello World' }, { status: 200 })
}
Loading…
Cancel
Save