eaab0a9
1
2
3
4
5
6
7
8
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);