Add rnib functionality
[ric-plt/xapp-frame-py.git] / ricxappframe / constants.py
diff --git a/ricxappframe/constants.py b/ricxappframe/constants.py
new file mode 100644 (file)
index 0000000..4ffe17e
--- /dev/null
@@ -0,0 +1,12 @@
+from dataclasses import dataclass
+
+
+@dataclass(frozen=True)
+class SDLNamespaces:
+    """
+    This dataclass has namespace information about the well-known usecase.
+    """
+    E2_MANAGER = "e2Manager"  # Namespace where rnib information is stored
+
+
+sdl_namespaces = SDLNamespaces()