import { NextResponse } from 'next/server' export function storageError(error: string, status: number) { return NextResponse.json({ error }, { status }) }