11 lines
427 B
JavaScript
11 lines
427 B
JavaScript
/**
|
|
* API Store | API 状态存储
|
|
* Pure global state - internal session config lives in hooks/useApiConfig.js
|
|
* 纯全局状态 - 内部会话配置位于 hooks/useApiConfig.js
|
|
*/
|
|
|
|
// Re-export from hook for backward compatibility | 为向后兼容重新导出
|
|
export { useApiConfig } from '../hooks/useApiConfig'
|
|
|
|
// For components that need direct access to config state | 用于需要直接访问配置状态的组件
|