Added test api route
parent
6bf1d46955
commit
0e3eda75f6
@ -0,0 +1,5 @@
|
||||
import { NextResponse } from 'next/server'
|
||||
|
||||
export async function GET(request: Request) {
|
||||
return NextResponse.json({ message: 'Hello World' }, { status: 200 })
|
||||
}
|
||||
Loading…
Reference in New Issue