PCNUSMSE's picture
Upload folder using huggingface_hub
4e37375 verified
raw
history blame contribute delete
534 Bytes
"""服务模块
包含应用程序的核心业务逻辑服务。
"""
from .file_validator import FileValidator, get_file_validator, file_validator
from .oss_service import OSSService, get_oss_service, oss_service
from .paraformer_service import ParaformerService, get_paraformer_service, paraformer_service
__all__ = [
"FileValidator",
"get_file_validator",
"file_validator",
"OSSService",
"get_oss_service",
"oss_service",
"ParaformerService",
"get_paraformer_service",
"paraformer_service"
]