1 2 3 4 5 6 7 8
//! This module implements the same features as the main crate, but using async io. mod gateway; mod search; mod soap; pub use self::gateway::Gateway; pub use self::search::search_gateway;