Adding UT test cases for Multiple E2T
[ric-plt/rtmgr.git] / pkg / rtmgr / types.go
index 783f49d..91a8aeb 100644 (file)
@@ -99,6 +99,7 @@ type ConfigRtmgr struct {
 type RicComponents struct {
        XApps []XApp
        E2Ts  map [string]E2TInstance
+       MeidMap  []string
        Pcs   PlatformComponents
 }
 
@@ -107,3 +108,17 @@ type Subscription struct {
        Fqdn  string
        Port  uint16
 }
+
+type PlatformRoutes []struct {
+       MessageType     string `json:"messagetype"`
+       SenderEndPoint  string `json:"senderendpoint"`
+       SubscriptionId  int32  `json:"subscriptionid"`
+       EndPoint        string `json:"endpoint"`
+       Meid            string `json:"meid"`
+}
+
+type RtmgrRoutes struct {
+       Prs PlatformRoutes      `json:"PlatformRoutes"`
+}
+
+