7 lines
168 B
Python
7 lines
168 B
Python
# src/services/parser/__init__.py
|
|
"""文档解析服务"""
|
|
|
|
from .pdf_parser import PDFParser
|
|
from .docx_parser import DocxParser
|
|
|
|
__all__ = ["PDFParser", "DocxParser"] |