feat: 添加 msw 支持 API 模拟

This commit is contained in:
2026-05-26 14:55:21 +08:00
parent aab7206307
commit 9575e5898f
15 changed files with 844 additions and 16 deletions

View File

@@ -0,0 +1,6 @@
import { userHandlers } from './handlers/user'
/** 所有 mock handlers按模块聚合 */
export const handlers = [
...userHandlers,
]