16 lines
328 B
Python
16 lines
328 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
QwenPaw E2E Test Framework - Configuration Module
|
|
"""
|
|
from config.settings import config, get_config, Config, BrowserConfig, ServerConfig, TestConfig, PathConfig
|
|
|
|
__all__ = [
|
|
"config",
|
|
"get_config",
|
|
"Config",
|
|
"BrowserConfig",
|
|
"ServerConfig",
|
|
"TestConfig",
|
|
"PathConfig",
|
|
]
|