import { NextResponse } from "next/server";
import { DEFAULT_CATEGORIES } from "@/lib/store";

// Categories are fixed — only GET is supported
export async function GET() {
  return NextResponse.json(DEFAULT_CATEGORIES);
}
