Implementation for downloading charts
[ric-plt/ricdms.git] / pkg / resthooks / types.go
index 40a46aa..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
 }