| import { NextRequest, NextResponse } from 'next/server'; | |
| import { withDb } from '@/lib/api-handler'; | |
| async function handler(_request: NextRequest) { | |
| return NextResponse.json({ message: 'Hello, world!' }); | |
| } | |
| export const GET = withDb(handler); |
| import { NextRequest, NextResponse } from 'next/server'; | |
| import { withDb } from '@/lib/api-handler'; | |
| async function handler(_request: NextRequest) { | |
| return NextResponse.json({ message: 'Hello, world!' }); | |
| } | |
| export const GET = withDb(handler); |