25 lines
793 B
TypeScript
25 lines
793 B
TypeScript
/**
|
|
* API 服务模块统一导出
|
|
*/
|
|
|
|
// 旧模块(待重构)
|
|
export * from './article'
|
|
|
|
// 新模块
|
|
export { AuthService } from './auth'
|
|
export { RoleService } from './role'
|
|
export { PermissionService } from './permission'
|
|
export { AccountService } from './account'
|
|
export { PlatformAccountService } from './platformAccount'
|
|
export { ShopAccountService } from './shopAccount'
|
|
export { ShopService } from './shop'
|
|
export { CardService } from './card'
|
|
export { CommissionService } from './commission'
|
|
export { EnterpriseService } from './enterprise'
|
|
export { CustomerAccountService } from './customerAccount'
|
|
|
|
// TODO: 按需添加其他业务模块
|
|
// export { PackageService } from './package'
|
|
// export { DeviceService } from './device'
|
|
// export { SettingService } from './setting'
|