mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-01 12:13:12 +08:00
11 lines
201 B
Python
11 lines
201 B
Python
"""
|
|
通用服务模块
|
|
|
|
提供系统级别的公共服务,包括:
|
|
- SystemLogService: 系统日志读取服务
|
|
"""
|
|
|
|
from .system_log_service import SystemLogService
|
|
|
|
__all__ = ['SystemLogService']
|