Files
xingrin/backend/apps/common/services/__init__.py

11 lines
201 B
Python
Raw Normal View History

2025-12-17 16:40:07 +08:00
"""
通用服务模块
提供系统级别的公共服务包括
- SystemLogService: 系统日志读取服务
"""
from .system_log_service import SystemLogService
__all__ = ['SystemLogService']