获取所有配置(从内存缓存)
(self)
| 1153 | return self._config_cache.get(key, default) |
| 1154 | |
| 1155 | async def get_all_config(self) -> Dict[str, Any]: |
| 1156 | """获取所有配置(从内存缓存)""" |
| 1157 | self._ensure_initialized() |
| 1158 | return self._config_cache.copy() |
| 1159 | |
| 1160 | async def delete_config(self, key: str) -> bool: |
| 1161 | """删除配置""" |
nothing calls this directly
no test coverage detected