@@ -102,14 +102,14 @@ import (
102
102
appWorkflow2 "github.com/devtron-labs/devtron/internal/sql/repository/appWorkflow"
103
103
"github.com/devtron-labs/devtron/internal/sql/repository/bulkUpdate"
104
104
"github.com/devtron-labs/devtron/internal/sql/repository/chartConfig"
105
- "github.com/devtron-labs/devtron/internal/sql/repository/deploymentConfig"
106
105
dockerRegistryRepository "github.com/devtron-labs/devtron/internal/sql/repository/dockerRegistry"
107
106
"github.com/devtron-labs/devtron/internal/sql/repository/helper"
108
107
repository8 "github.com/devtron-labs/devtron/internal/sql/repository/imageTagging"
109
108
"github.com/devtron-labs/devtron/internal/sql/repository/pipelineConfig"
110
109
resourceGroup "github.com/devtron-labs/devtron/internal/sql/repository/resourceGroup"
111
110
"github.com/devtron-labs/devtron/internal/util"
112
111
"github.com/devtron-labs/devtron/pkg/app"
112
+ read4 "github.com/devtron-labs/devtron/pkg/app/appDetails/read"
113
113
"github.com/devtron-labs/devtron/pkg/app/dbMigration"
114
114
"github.com/devtron-labs/devtron/pkg/app/status"
115
115
"github.com/devtron-labs/devtron/pkg/appClone"
@@ -128,6 +128,7 @@ import (
128
128
"github.com/devtron-labs/devtron/pkg/bulkAction/service"
129
129
"github.com/devtron-labs/devtron/pkg/chart"
130
130
"github.com/devtron-labs/devtron/pkg/chart/gitOpsConfig"
131
+ read2 "github.com/devtron-labs/devtron/pkg/chart/read"
131
132
chartRepoRepository "github.com/devtron-labs/devtron/pkg/chartRepo/repository"
132
133
"github.com/devtron-labs/devtron/pkg/commonService"
133
134
"github.com/devtron-labs/devtron/pkg/config"
@@ -357,6 +358,8 @@ func InitializeApp() (*App, error) {
357
358
wire .Bind (new (gitOpsConfig.DevtronAppGitOpConfigService ), new (* gitOpsConfig.DevtronAppGitOpConfigServiceImpl )),
358
359
chart .NewChartServiceImpl ,
359
360
wire .Bind (new (chart.ChartService ), new (* chart.ChartServiceImpl )),
361
+ read2 .NewChartReadServiceImpl ,
362
+ wire .Bind (new (read2.ChartReadService ), new (* read2.ChartReadServiceImpl )),
360
363
service .NewBulkUpdateServiceImpl ,
361
364
wire .Bind (new (service.BulkUpdateService ), new (* service.BulkUpdateServiceImpl )),
362
365
@@ -375,6 +378,10 @@ func InitializeApp() (*App, error) {
375
378
wire .Bind (new (appList.AppListingRouter ), new (* appList.AppListingRouterImpl )),
376
379
appList2 .NewAppListingRestHandlerImpl ,
377
380
wire .Bind (new (appList2.AppListingRestHandler ), new (* appList2.AppListingRestHandlerImpl )),
381
+
382
+ read4 .NewAppDetailsReadServiceImpl ,
383
+ wire .Bind (new (read4.AppDetailsReadService ), new (* read4.AppDetailsReadServiceImpl )),
384
+
378
385
app .NewAppListingServiceImpl ,
379
386
wire .Bind (new (app.AppListingService ), new (* app.AppListingServiceImpl )),
380
387
repository .NewAppListingRepositoryImpl ,
@@ -622,6 +629,7 @@ func InitializeApp() (*App, error) {
622
629
repository9 .NewClusterInstalledAppsRepositoryImpl ,
623
630
wire .Bind (new (repository9.ClusterInstalledAppsRepository ), new (* repository9.ClusterInstalledAppsRepositoryImpl )),
624
631
632
+ commonService .NewCommonBaseServiceImpl ,
625
633
commonService .NewCommonServiceImpl ,
626
634
wire .Bind (new (commonService.CommonService ), new (* commonService.CommonServiceImpl )),
627
635
@@ -659,8 +667,8 @@ func InitializeApp() (*App, error) {
659
667
660
668
router .NewCommonRouterImpl ,
661
669
wire .Bind (new (router.CommonRouter ), new (* router.CommonRouterImpl )),
662
- restHandler .NewCommonRestHanlderImpl ,
663
- wire .Bind (new (restHandler.CommonRestHanlder ), new (* restHandler.CommonRestHanlderImpl )),
670
+ restHandler .NewCommonRestHandlerImpl ,
671
+ wire .Bind (new (restHandler.CommonRestHandler ), new (* restHandler.CommonRestHandlerImpl )),
664
672
665
673
router .NewScopedVariableRouterImpl ,
666
674
wire .Bind (new (router.ScopedVariableRouter ), new (* router.ScopedVariableRouterImpl )),
@@ -941,11 +949,7 @@ func InitializeApp() (*App, error) {
941
949
cel .NewCELServiceImpl ,
942
950
wire .Bind (new (cel.EvaluatorService ), new (* cel.EvaluatorServiceImpl )),
943
951
944
- deploymentConfig .NewRepositoryImpl ,
945
- wire .Bind (new (deploymentConfig.Repository ), new (* deploymentConfig.RepositoryImpl )),
946
-
947
- common .NewDeploymentConfigServiceImpl ,
948
- wire .Bind (new (common.DeploymentConfigService ), new (* common.DeploymentConfigServiceImpl )),
952
+ common .WireSet ,
949
953
950
954
repoCredsK8sClient .NewRepositoryCredsK8sClientImpl ,
951
955
wire .Bind (new (repoCredsK8sClient.RepositoryCredsK8sClient ), new (* repoCredsK8sClient.RepositoryCredsK8sClientImpl )),
0 commit comments