(self, db_config: MyDatabaseConfig, model: type[T], id_field: str = "id")
| 113 | |
| 114 | class BaseRepository(ABC, Generic[T]): |
| 115 | def __init__(self, db_config: MyDatabaseConfig, model: type[T], id_field: str = "id"): |
| 116 | self._db_config = db_config |
| 117 | self._model = model |
| 118 | self._id_field = id_field |
| 119 | |
| 120 | async def get_by_id( |
| 121 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected