"""User storage subpackage. Holds the ORM model for the ``users`` table. The concrete repository implementation (``SQLiteUserRepository``) lives in the app layer (``app.gateway.auth.repositories.sqlite``) because it converts between the ORM row and the auth module's pydantic ``User`` class. This keeps the harness package free of any dependency on app code. """ from deerflow.persistence.user.model import UserRow __all__ = ["UserRow"]