blob: 4ffe17ec2cb8ea7cae689db06f1822344032aec5 [file] [log] [blame]
yc999.jang750eb5b2021-06-10 19:04:18 +09001from dataclasses import dataclass
2
3
4@dataclass(frozen=True)
5class 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
12sdl_namespaces = SDLNamespaces()