1 2 3 4 5 6 7 8 9 10 11
pub mod file; pub mod parse; pub mod xlsx; pub mod docx; pub mod pptx; pub use file::FileError; pub use parse::ParseError; pub use xlsx::XlsxError; pub use docx::DocxError; pub use pptx::PptxError;