UNPKG

ruch

Version:

Revolutionary React TypeScript CLI with hexagonal architecture & AI-powered development assistance. Create maintainable, scalable applications with domain-driven design and integrated AI tooling.

20 lines (17 loc) 535 B
// MSW Handlers Index // This file aggregates all domain handlers for MSW import { cartHandlers } from './cart'; import { notificationHandlers } from './notification'; import { orderHandlers } from './order'; import { paymentHandlers } from './payment'; import { productHandlers } from './product'; import { userHandlers } from './user'; // Export all handlers for MSW setup export const handlers = [ ...cartHandlers, ...notificationHandlers, ...orderHandlers, ...paymentHandlers, ...productHandlers, ...userHandlers, ];