This commit is contained in:
Alexander Kalinovsky
2025-01-04 12:00:12 +01:00
commit 6dbe0536ca
94 changed files with 3467 additions and 0 deletions

8
model/entity_metadata.py Normal file
View File

@@ -0,0 +1,8 @@
from .descriptors import EntityDescriptor
from ._singleton import Singleton
class EntityMetadata(metaclass = Singleton):
def __init__(self):
self.entity_descriptors: dict[str, EntityDescriptor] = {}