4ffe17ec2cb8ea7cae689db06f1822344032aec5
[ric-plt/xapp-frame-py.git] / ricxappframe / constants.py
1 from dataclasses import dataclass
2
3
4 @dataclass(frozen=True)
5 class SDLNamespaces:
6     """
7     This dataclass has namespace information about the well-known usecase.
8     """
9     E2_MANAGER = "e2Manager"  # Namespace where rnib information is stored
10
11
12 sdl_namespaces = SDLNamespaces()