mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-05 14:05:12 +00:00
9 lines
383 B
Python
9 lines
383 B
Python
from unilabos.utils.log import logger
|
||
from unilabos.utils.environment_check import check_environment, EnvironmentChecker
|
||
|
||
# 确保日志配置在导入utils包时自动应用
|
||
# 这样任何导入utils包或其子模块的代码都会自动配置好日志
|
||
|
||
# 导出logger和环境检查工具,使其可以直接导入
|
||
__all__ = ["logger", "check_environment", "EnvironmentChecker"]
|