pub mod common;
pub mod docx;
pub mod error;
pub mod pptx;
pub mod xlsx;
pub use error::*;
pub use common::*;
pub use common::{ utils as common_utils, xml_utils_functions, zip_utils_functions };
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}