1 2 3 4 5 6 7 8
//! HWPX reader and writer (ZIP/XML format). #![allow(missing_docs)] mod reader; mod writer; pub use reader::read_hwpx; pub use writer::write_hwpx;