Add package init
Browse files- doc_enricher/__init__.py +5 -0
doc_enricher/__init__.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Document Re-enrichment Module
|
| 2 |
+
from .enricher import DocumentEnricher
|
| 3 |
+
from .handlers.docx_handler import DocxHandler
|
| 4 |
+
|
| 5 |
+
__all__ = ["DocumentEnricher", "DocxHandler"]
|