Get a database session.
(self)
| 124 | logger.info(f"UserManager initialized with database at {db_path}") |
| 125 | |
| 126 | def _get_session(self) -> Session: |
| 127 | """Get a database session.""" |
| 128 | return self.SessionLocal() |
| 129 | |
| 130 | def _init_root_user(self, user_id: str) -> None: |
| 131 | """Initialize the root user if no users exist.""" |
no outgoing calls
no test coverage detected