I release step 2 of 2
[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()