session.py 401 B

12345678
  1. from app.db.client import get_db, db_manager
  2. # Backward compatibility for existing code that might import engine/SessionLocal
  3. # We are removing SQLAlchemy, so these are just placeholders or removed.
  4. # But since we are rewriting the entire DB layer, we don't need to keep them if we fix all usages.
  5. # For now, let's just export get_db which is the main dependency.
  6. __all__ = ["get_db", "db_manager"]