Test case for custom onboard API
[ric-plt/ricdms.git] / pkg / resthooks / types.go
index d6f3ad4..0a3bf5b 100644 (file)
@@ -20,6 +20,8 @@
 package resthooks
 
 import (
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/charts"
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/deploy"
        "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/health"
        "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/onboard"
 )
@@ -27,4 +29,6 @@ import (
 type Resthook struct {
        HealthChecker health.IHealthChecker
        Onboarder     onboard.IOnboarder
+       ChartMgr      charts.IChartMgr
+       DeployMgr     deploy.IDeploy
 }