# 数据库存储配置 from typing import Dict, Any db_list: dict[str, dict[Any, Any] | dict[str, str]] = { "mysql": { }, "pg": { "host": "10.10.9.243", "port": "5432", "database": "sde", "user": "sde", "password": "sde", } }