File size: 165 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { NextResponse } from 'next/server'
export async function GET() {
console.log('Route Handler invoked')
return NextResponse.json({ time: Date.now() })
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
import { NextResponse } from 'next/server'
export async function GET() {
console.log('Route Handler invoked')
return NextResponse.json({ time: Date.now() })
}
|