15 lines
334 B
Python
15 lines
334 B
Python
"""
|
|
配置管理模块
|
|
包含系统配置、平台配置等功能。
|
|
"""
|
|
|
|
from .settings import Settings, HumanBehaviorConfig, BrowserConfig
|
|
from .platform_config import PlatformConfigs, get_platform_config
|
|
|
|
__all__ = [
|
|
"Settings",
|
|
"HumanBehaviorConfig",
|
|
"BrowserConfig",
|
|
"PlatformConfigs",
|
|
"get_platform_config"
|
|
] |