41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
// src/mocks/handlers/index.js
|
|
// 汇总所有 Mock Handlers
|
|
|
|
import { authHandlers } from './auth';
|
|
import { accountHandlers } from './account';
|
|
import { simulationHandlers } from './simulation';
|
|
import { eventHandlers } from './event';
|
|
import { paymentHandlers } from './payment';
|
|
import { industryHandlers } from './industry';
|
|
import { conceptHandlers } from './concept';
|
|
import { stockHandlers } from './stock';
|
|
import { companyHandlers } from './company';
|
|
import { marketHandlers } from './market';
|
|
import { financialHandlers } from './financial';
|
|
import { limitAnalyseHandlers } from './limitAnalyse';
|
|
import { posthogHandlers } from './posthog';
|
|
import { externalHandlers } from './external';
|
|
import { agentHandlers } from './agent';
|
|
|
|
// 可以在这里添加更多的 handlers
|
|
// import { userHandlers } from './user';
|
|
|
|
export const handlers = [
|
|
...authHandlers,
|
|
...accountHandlers,
|
|
...simulationHandlers,
|
|
...eventHandlers,
|
|
...paymentHandlers,
|
|
...industryHandlers,
|
|
...conceptHandlers,
|
|
...stockHandlers,
|
|
...companyHandlers,
|
|
...marketHandlers,
|
|
...financialHandlers,
|
|
...limitAnalyseHandlers,
|
|
...posthogHandlers,
|
|
...externalHandlers,
|
|
...agentHandlers,
|
|
// ...userHandlers,
|
|
];
|