"""核心基础设施包 注意:不在此模块导入 config / log,以免测试在 conftest 中调用 set_config_file 之前 就把配置定死。请使用: from app.core.config import settings from app.core.log import logger """ from app.core.exceptions import ( PluginNotFoundException, ProxyNotFoundException, ProxyPoolException, ValidationException, ) __all__ = [ "ProxyPoolException", "PluginNotFoundException", "ProxyNotFoundException", "ValidationException", ]