Multiple E2T instance feature - Introduced APIs Delete E2T Instance and associate...
[ric-plt/rtmgr.git] / pkg / sdl / types.go
index f94557e..f4a9125 100644 (file)
@@ -28,6 +28,7 @@
 package sdl
 
 import "routing-manager/pkg/rtmgr"
+import "routing-manager/pkg/models" 
 
 //type readAll func(string) (*rtmgr.RicComponents, error)
 //type writeAll func(string, *rtmgr.RicComponents) error
@@ -45,4 +46,7 @@ type Engine interface {
        WriteAll(string, *rtmgr.RicComponents) error
        WriteXApps(string, *[]rtmgr.XApp) error
        WriteNewE2TInstance(string, *rtmgr.E2TInstance) error
+       WriteAssRANToE2TInstance(string, models.RanE2tMap) error
+       WriteDisAssRANFromE2TInstance(string, models.RanE2tMap) error
+       WriteDeleteE2TInstance(string, *models.E2tDeleteData) error
 }