Preparation for SdlInstance usage removal in RNIB
[ric-plt/nodeb-rnib.git] / common / utils.go
index 5c3bff9..1cae140 100644 (file)
@@ -23,6 +23,9 @@ import (
        "fmt"
 )
 
+//SDL namespace used by the RNIB
+const rnibNamespace = "e2Manager"
+
 /*
 ValidateAndBuildCellIdKey builds key according to the specified format returns the resulting string
 */
@@ -112,3 +115,8 @@ func MapE2TAddressesToKeys(addresses []string) []string {
 
        return keys
 }
+
+//GetRNibNamespace returns namespace used by the RNIB in SDL.
+func GetRNibNamespace() string {
+       return rnibNamespace
+}