Implement Get operation for chart list
[ric-plt/ricdms.git] / pkg / resthooks / types.go
index 7c3df5d..edf3ffb 100644 (file)
 //
 package resthooks
 
+import (
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/charts"
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/health"
+       "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/onboard"
+)
+
 type Resthook struct {
+       HealthChecker health.IHealthChecker
+       Onboarder     onboard.IOnboarder
+       ChartMgr      charts.IChartMgr
 }