Files
meijiaka-zy/python-api/app/services/__init__.py
T

15 lines
316 B
Python

"""
服务层导出
==========
"""
from app.services.kling_video_service import KlingVideoService, get_kling_video_service
from app.services.script_service import ScriptService, get_script_service
__all__ = [
"ScriptService",
"get_script_service",
"KlingVideoService",
"get_kling_video_service",
]