1mod adapter; 2mod client; 3mod config; 4mod model; 5mod types; 6 7pub use adapter::WordPressAdapter; 8pub use config::{CAPABILITY, create, register}; 9pub use model::ID; 10 11#[cfg(test)] 12mod tests;