feat: 增加通知Provider和Jenkins自动同步

This commit is contained in:
湛兮
2026-06-11 21:07:54 +08:00
parent caec5a618d
commit 163f411485
14 changed files with 568 additions and 31 deletions
+7 -1
View File
@@ -7,11 +7,17 @@ import { DeployExecutionService } from './deploy-execution.service';
import { DeployRunRepository } from './deploy-run.repository';
import { DeployRunsController } from './deploy-runs.controller';
import { DeployRunsService } from './deploy-runs.service';
import { JenkinsSyncSchedulerService } from './jenkins-sync-scheduler.service';
@Module({
imports: [AuditModule, JenkinsModule, ProjectsModule, WeComModule],
controllers: [DeployRunsController],
providers: [DeployExecutionService, DeployRunRepository, DeployRunsService],
providers: [
DeployExecutionService,
DeployRunRepository,
DeployRunsService,
JenkinsSyncSchedulerService,
],
exports: [DeployExecutionService, DeployRunRepository, DeployRunsService],
})
export class DeployRunsModule {}