11 lines
353 B
Python
11 lines
353 B
Python
"""Deprecated psycopg/Postgres repository adapters.
|
|
|
|
SQLAlchemy is the canonical persistence adapter for the SaaS runtime. This
|
|
package is kept only as a migration marker; do not import it in application,
|
|
API, worker, or new tests.
|
|
"""
|
|
|
|
raise RuntimeError(
|
|
"packages.adapters.postgres is deprecated; use packages.adapters.sqlalchemy_impl instead"
|
|
)
|