MiroFish/backend/app/services/__init__.py

10 lines
241 B
Python

"""
业务服务模块
"""
from .ontology_generator import OntologyGenerator
from .graph_builder import GraphBuilderService
from .text_processor import TextProcessor
__all__ = ['OntologyGenerator', 'GraphBuilderService', 'TextProcessor']