dwijverma2 commited on
Commit
a7293f7
·
verified ·
1 Parent(s): 01107e1

Add package init

Browse files
Files changed (1) hide show
  1. 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"]