文件quark_client\client.py的def get_storage_info(self) -> Dict[str, Any]:函数中
`def get_storage_info(self) -> Dict[str, Any]:
"""
获取存储空间信息
Returns:
存储信息
"""
try:
response = self.api_client.get('capacity') **#API更新后capacity应为member**
return response
except Exception as e:
return {'error': str(e)}
`
文件quark_client\client.py的def get_storage_info(self) -> Dict[str, Any]:函数中
`def get_storage_info(self) -> Dict[str, Any]:
"""
获取存储空间信息
`