2025-09-10 08:04:28 +08:00
|
|
|
|
// Module exports
|
2025-08-24 02:31:42 +08:00
|
|
|
|
export * from './admin/admin.module';
|
|
|
|
|
|
export * from './member/member.module';
|
|
|
|
|
|
export * from './rbac/rbac.module';
|
2025-08-28 05:19:14 +08:00
|
|
|
|
export * from './user/user.module';
|
2025-08-24 02:31:42 +08:00
|
|
|
|
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-09-10 08:04:28 +08:00
|
|
|
|
export * from './sys/sys.module';
|
|
|
|
|
|
export * from './niucloud/niucloud.module';
|
|
|
|
|
|
// 注意:Site/Pay 模块由 app.module.ts 显式引入,避免重复导出导致歧义
|
2025-08-23 13:20:01 +08:00
|
|
|
|
|
2025-09-10 08:04:28 +08:00
|
|
|
|
// Guard exports
|
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-09-10 08:04:28 +08:00
|
|
|
|
// Settings exports
|
2025-08-24 02:31:42 +08:00
|
|
|
|
export * from './settings';
|