8 lines
211 B
Python
8 lines
211 B
Python
from .descriptors import EntityDescriptor
|
|
from ._singleton import Singleton
|
|
|
|
|
|
class EntityMetadata(metaclass=Singleton):
|
|
def __init__(self):
|
|
self.entity_descriptors: dict[str, EntityDescriptor] = {}
|