import { createApiHandler } from '@/lib/api-helper';
const handler = createApiHandler('news.json', 'news');
export const GET = handler.GET;
export const POST = handler.POST;
export const PUT = handler.PUT;
export const DELETE = handler.DELETE;
export const PATCH = handler.PATCH;
