import { createApiHandler } from "@/lib/api-helper";

const handler = createApiHandler("users.json", "user");

export const GET = handler.GET;
export const POST = handler.POST;
export const PUT = handler.PUT;
export const DELETE = handler.DELETE;
