From d66985e597b628ffa4c4accfbab84cb1ac678a7e Mon Sep 17 00:00:00 2001 From: Lars Date: Tue, 7 Oct 2025 13:17:14 +0200 Subject: [PATCH] =?UTF-8?q?app/models/=5F=5Finit=5F=5F.py=20hinzugef=C3=BC?= =?UTF-8?q?gt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 app/models/__init__.py diff --git a/app/models/__init__.py b/app/models/__init__.py new file mode 100644 index 0000000..dbb1b95 --- /dev/null +++ b/app/models/__init__.py @@ -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", +]