Route generation fix
[ric-plt/rtmgr.git] / pkg / rtmgr / types.go
index 80d2dc0..dc46e24 100644 (file)
@@ -18,7 +18,7 @@
 */
 /*
   Mnemonic:    rtmgr/types.go
-  Abstract:    Containes RTMGR (Routing Manager) specific types
+  Abstract:    Contains RTMGR (Routing Manager) specific types
   Date:                12 March 2019
 */
 
@@ -35,7 +35,6 @@ type Endpoints map[string]*Endpoint
 
 type SubscriptionList []Subscription
 
-
 //TODO: uuid is not a real UUID but a string of "ip:port"
 // this should be changed to real UUID later on which should come from xApp Manager // petszila
 type Endpoint struct {
@@ -90,8 +89,7 @@ type RicComponents struct {
 }
 
 type Subscription struct {
-       SubID    int32
-       Fqdn     string
-       Port     uint16
+       SubID int32
+       Fqdn  string
+       Port  uint16
 }
-