mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-17 10:06:18 +00:00
The ORM row stays behind (single alembic chain until the infrastructure move); everything else is served by the domain slice. Repository tests become a contract suite that runs the same cases against the SQL adapter and an in-memory fake; ownership and timezone tests use explicit user_id instead of the AUTO-sentinel context.
12 lines
401 B
Python
12 lines
401 B
Python
"""Feedback persistence — ORM row only.
|
|
|
|
The legacy SQL repository was replaced by the hexagonal slice:
|
|
port `deerflow.domain.feedback.ports.FeedbackRepository`, adapter
|
|
`app.infra.persistence.feedback.SqlFeedbackRepository`. The ORM row stays
|
|
here until PR-N moves engine/models/migrations into app/infra.
|
|
"""
|
|
|
|
from deerflow.persistence.feedback.model import FeedbackRow
|
|
|
|
__all__ = ["FeedbackRow"]
|