pub mod docx_parser;
pub mod html_parser;
pub mod image_parser;
pub mod pdf_parser;
pub mod plain_text;
pub mod pptx_parser;
pub mod stub;
pub mod xlsx_parser;
pub use docx_parser::DocxParser;
pub use html_parser::HtmlParser;
pub use image_parser::ImageParser;
pub use pdf_parser::PdfParser;
pub use plain_text::PlainTextParser;
pub use pptx_parser::PptxParser;
pub use stub::StubParser;
pub use xlsx_parser::XlsxParser;