MCPcopy Create free account
hub / github.com/su-kaka/gcli2api / get_all_config

Method get_all_config

src/storage/sqlite_manager.py:1155–1158  ·  view source on GitHub ↗

获取所有配置(从内存缓存)

(self)

Source from the content-addressed store, hash-verified

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 """删除配置"""

Callers

nothing calls this directly

Calls 1

_ensure_initializedMethod · 0.95

Tested by

no test coverage detected