2025-08-24 02:31:42 +08:00
|
|
|
// 导出所有通用模块
|
|
|
|
|
export * from './admin/admin.module';
|
|
|
|
|
export * from './member/member.module';
|
|
|
|
|
export * from './rbac/rbac.module';
|
|
|
|
|
export * from './auth/auth.module';
|
|
|
|
|
export * from './upload/upload.module';
|
2025-08-27 11:24:22 +08:00
|
|
|
export * from './jobs/jobs.module';
|
|
|
|
|
export * from './event-bus/event-bus.module';
|
2025-08-23 13:20:01 +08:00
|
|
|
|
2025-08-24 02:31:42 +08:00
|
|
|
// 导出认证相关
|
|
|
|
|
export * from './auth/guards/JwtAuthGuard';
|
|
|
|
|
export * from './auth/guards/RolesGuard';
|
|
|
|
|
export * from './auth/guards/GlobalAuthGuard';
|
|
|
|
|
export * from './auth/decorators/RolesDecorator';
|
2025-08-23 13:20:01 +08:00
|
|
|
|
2025-08-24 02:31:42 +08:00
|
|
|
// 导出设置相关模块
|
|
|
|
|
export * from './settings';
|
|
|
|
|
|
|
|
|
|
// 导出常量
|
2025-08-27 11:24:22 +08:00
|
|
|
export * from '../config/common/constants';
|