mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 19:53:11 +08:00
19 lines
458 B
Python
19 lines
458 B
Python
"""
|
||
通用服务模块
|
||
|
||
提供系统级别的公共服务,包括:
|
||
- SystemLogService: 系统日志读取服务
|
||
- BlacklistService: 黑名单过滤服务
|
||
|
||
注意:FilterService 已移至 apps.common.utils.filter_utils
|
||
推荐使用: from apps.common.utils.filter_utils import apply_filters
|
||
"""
|
||
|
||
from .system_log_service import SystemLogService
|
||
from .blacklist_service import BlacklistService
|
||
|
||
__all__ = [
|
||
'SystemLogService',
|
||
'BlacklistService',
|
||
]
|