// app/api/branches/route.js import { NextResponse } from "next/server"; import { listBranches } from "@/lib/storage"; export async function GET() { try { const branches = await listBranches(); return NextResponse.json({ branches }); } catch (error) { console.error("[api/branches] Fehler:", error); return NextResponse.json( { error: "Fehler beim Lesen der Niederlassungen" }, { status: 500 } ); } }