@@ -222,10 +222,27 @@ func InitializeApp() (*App, error) {
222222 wire .Bind (new (app2.AppRepository ), new (* app2.AppRepositoryImpl )),
223223
224224 pipeline .GetDeploymentServiceTypeConfig ,
225+
225226 pipeline .NewPipelineBuilderImpl ,
226227 wire .Bind (new (pipeline.PipelineBuilder ), new (* pipeline.PipelineBuilderImpl )),
227228 pipeline .NewCiPipelineConfigServiceImpl ,
228229 wire .Bind (new (pipeline.CiPipelineConfigService ), new (* pipeline.CiPipelineConfigServiceImpl )),
230+ pipeline .NewCiMaterialConfigServiceImpl ,
231+ wire .Bind (new (pipeline.CiMaterialConfigService ), new (* pipeline.CiMaterialConfigServiceImpl )),
232+
233+ pipeline .NewAppArtifactManagerImpl ,
234+ wire .Bind (new (pipeline.AppArtifactManager ), new (* pipeline.AppArtifactManagerImpl )),
235+ pipeline .NewDevtronAppCMCSServiceImpl ,
236+ wire .Bind (new (pipeline.DevtronAppCMCSService ), new (* pipeline.DevtronAppCMCSServiceImpl )),
237+ pipeline .NewDevtronAppStrategyServiceImpl ,
238+ wire .Bind (new (pipeline.DevtronAppStrategyService ), new (* pipeline.DevtronAppStrategyServiceImpl )),
239+ pipeline .NewAppDeploymentTypeChangeManagerImpl ,
240+ wire .Bind (new (pipeline.AppDeploymentTypeChangeManager ), new (* pipeline.AppDeploymentTypeChangeManagerImpl )),
241+ pipeline .NewCdPipelineConfigServiceImpl ,
242+ wire .Bind (new (pipeline.CdPipelineConfigService ), new (* pipeline.CdPipelineConfigServiceImpl )),
243+ pipeline .NewDevtronAppConfigServiceImpl ,
244+ wire .Bind (new (pipeline.DevtronAppConfigService ), new (* pipeline.DevtronAppConfigServiceImpl )),
245+
229246 util5 .NewLoggingMiddlewareImpl ,
230247 wire .Bind (new (util5.LoggingMiddleware ), new (* util5.LoggingMiddlewareImpl )),
231248 pipeline2 .NewPipelineRestHandlerImpl ,
@@ -857,8 +874,8 @@ func InitializeApp() (*App, error) {
857874 repository .NewGlobalCMCSRepositoryImpl ,
858875 wire .Bind (new (repository.GlobalCMCSRepository ), new (* repository.GlobalCMCSRepositoryImpl )),
859876
860- chartRepoRepository .NewGlobalStrategyMetadataRepositoryImpl ,
861- wire .Bind (new (chartRepoRepository.GlobalStrategyMetadataRepository ), new (* chartRepoRepository.GlobalStrategyMetadataRepositoryImpl )),
877+ // chartRepoRepository.NewGlobalStrategyMetadataRepositoryImpl,
878+ // wire.Bind(new(chartRepoRepository.GlobalStrategyMetadataRepository), new(*chartRepoRepository.GlobalStrategyMetadataRepositoryImpl)),
862879 chartRepoRepository .NewGlobalStrategyMetadataChartRefMappingRepositoryImpl ,
863880 wire .Bind (new (chartRepoRepository.GlobalStrategyMetadataChartRefMappingRepository ), new (* chartRepoRepository.GlobalStrategyMetadataChartRefMappingRepositoryImpl )),
864881
0 commit comments