(self, db_config: DBConfigType, create_db: bool = False)
| 86 | await self._init_connections() |
| 87 | |
| 88 | def _init_config(self, db_config: DBConfigType, create_db: bool = False) -> None: |
| 89 | if self._db_config is None: |
| 90 | self._db_config = db_config |
| 91 | else: |
| 92 | self._db_config.update(db_config) |
| 93 | self._create_db = create_db |
| 94 | |
| 95 | @property |
| 96 | def db_config(self) -> DBConfigType: |