9 lines
233 B
Python
9 lines
233 B
Python
"""Initialize the app.services.parser package."""
|
|
|
|
from .pdf_parser import PDFParser
|
|
from .docx_parser import DocxParser
|
|
# Keep package boundaries explicit so backend imports stay predictable.
|
|
|
|
|
|
__all__ = ["PDFParser", "DocxParser"]
|