(self)
| 62 | } |
| 63 | |
| 64 | def __init__(self): |
| 65 | self._db_path = None |
| 66 | self._credentials_dir = None |
| 67 | self._initialized = False |
| 68 | self._lock = asyncio.Lock() |
| 69 | |
| 70 | # 内存配置缓存 - 初始化时加载一次 |
| 71 | self._config_cache: Dict[str, Any] = {} |
| 72 | self._config_loaded = False |
| 73 | |
| 74 | async def initialize(self) -> None: |
| 75 | """初始化 SQLite 数据库""" |
nothing calls this directly
no outgoing calls
no test coverage detected