Implement health check for xApp
[ric-plt/ricdms.git] / pkg / resthooks / types.go
index 7c3df5d..0a3bf5b 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/deploy"
+       "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
+       DeployMgr     deploy.IDeploy
 }