初始化
This commit is contained in:
18
core/__init__.py
Normal file
18
core/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
核心模块
|
||||
- 配置管理
|
||||
- 日志记录
|
||||
- 错误处理
|
||||
"""
|
||||
from .config import config, Config
|
||||
from .logger import setup_logging, get_all_log_files, read_log_file
|
||||
from .error_handler import ErrorHandler
|
||||
|
||||
__all__ = [
|
||||
'config',
|
||||
'Config',
|
||||
'setup_logging',
|
||||
'get_all_log_files',
|
||||
'read_log_file',
|
||||
'ErrorHandler'
|
||||
]
|
||||
Reference in New Issue
Block a user