Files
xingrin/backend/apps/common/services/__init__.py
2025-12-17 16:40:07 +08:00

11 lines
201 B
Python

"""
通用服务模块
提供系统级别的公共服务,包括:
- SystemLogService: 系统日志读取服务
"""
from .system_log_service import SystemLogService
__all__ = ['SystemLogService']