Files
smartserve-client/frontend/src/mock/handlers.ts
xie2can 34e52ab1d0 feat: 新增知识卡片页面及路由支持
- 添加知识卡片 API 接口与 Mock 数据
- 实现知识卡片列表展示与筛选功能
- 实现知识卡片详情抽屉
- 支持路由嵌套配置与菜单展开
2026-05-27 19:46:05 +08:00

9 lines
237 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { userHandlers } from './handlers/user'
import { knowledgeCardsHandlers } from './handlers/knowledgeCards'
/** 所有 mock handlers按模块聚合 */
export const handlers = [
...userHandlers,
...knowledgeCardsHandlers,
]