X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ricxappframe%2Fconstants.py;fp=ricxappframe%2Fconstants.py;h=4ffe17ec2cb8ea7cae689db06f1822344032aec5;hb=750eb5b040db75fae264da5e422038e08e5da345;hp=0000000000000000000000000000000000000000;hpb=0d52cac0302f98defe240ae646431d8b9c6bda5b;p=ric-plt%2Fxapp-frame-py.git diff --git a/ricxappframe/constants.py b/ricxappframe/constants.py new file mode 100644 index 0000000..4ffe17e --- /dev/null +++ b/ricxappframe/constants.py @@ -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()