1 2 3 4 5 6 7
//! Reading and writing of the `.xlsx` zip package. pub(crate) mod reader; pub(crate) mod writer; pub(crate) use reader::read_workbook; pub(crate) use writer::write_workbook;