import { addLotOccupancy } from '../../helpers/lotOccupancyDB/addLotOccupancy.js'; export async function handler(request, response) { const lotOccupancyId = await addLotOccupancy(request.body, request.session); response.json({ success: true, lotOccupancyId }); } export default handler;