wx_core/
lib.rs

1#![deny(missing_debug_implementations, missing_copy_implementations)]
2#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
3#![doc = include_str!("../readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6
7mod errors;
8pub mod helpers;
9mod orm_types;
10mod wx_decrypt;
11mod wx_export;
12mod wx_scanner;
13mod xlsx_writer;
14
15pub use crate::{
16    errors::{WxError, WxErrorKind, WxResult},
17    orm_types::message_type::MessageType,
18    wx_decrypt::WxDecryptor,
19    wx_export::WxExport,
20    wx_scanner::{WeChatProfile, WxScanner},
21    xlsx_writer::XlsxWriter,
22};