rayhpeng 808e31e2ee refactor(harness): drop legacy feedback repository
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.
2026-07-23 15:30:56 +08:00

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"]