app/models/__init__.py hinzugefügt
All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s

This commit is contained in:
Lars 2025-10-07 13:17:14 +02:00
parent ff4bed99c9
commit d66985e597

24
app/models/__init__.py Normal file
View File

@ -0,0 +1,24 @@
"""
app/models/__init__.py Package-Init für mindnet DTOs (WP-04)
Version: 0.1.0 Stand: 2025-10-07
"""
from .dto import (
EdgeKind,
NodeDTO,
EdgeDTO,
QueryRequest,
QueryHit,
QueryResponse,
GraphResponse,
)
__all__ = [
"EdgeKind",
"NodeDTO",
"EdgeDTO",
"QueryRequest",
"QueryHit",
"QueryResponse",
"GraphResponse",
]