15 lines
334 B
Python
Raw Normal View History

2025-11-12 00:28:07 +08:00
"""
配置管理模块
包含系统配置平台配置等功能
"""
from .settings import Settings, HumanBehaviorConfig, BrowserConfig
from .platform_config import PlatformConfigs, get_platform_config
__all__ = [
"Settings",
"HumanBehaviorConfig",
"BrowserConfig",
"PlatformConfigs",
"get_platform_config"
]