11 lines
149 B
Python
11 lines
149 B
Python
"""
|
|
服务模块
|
|
"""
|
|
|
|
from .ai_service import AIService
|
|
from .feishu_service import FeishuService
|
|
|
|
__all__ = [
|
|
'AIService',
|
|
'FeishuService'
|
|
] |