All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s
25 lines
382 B
Python
25 lines
382 B
Python
"""
|
|
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",
|
|
]
|