2026-05-18 16:32:42 +08:00
|
|
|
"""Initialize the app.services.parser package."""
|
2026-05-14 15:07:34 +08:00
|
|
|
|
|
|
|
|
from .pdf_parser import PDFParser
|
|
|
|
|
from .docx_parser import DocxParser
|
2026-05-18 16:32:42 +08:00
|
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
2026-05-14 15:07:34 +08:00
|
|
|
|
2026-05-14 18:09:15 +08:00
|
|
|
__all__ = ["PDFParser", "DocxParser"]
|