tokio-xmpp: rename OneshotClient to SimpleClient

This commit is contained in:
Astro 2020-05-30 00:03:17 +02:00
commit eb13634571
4 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ pub mod xmpp_stream;
pub mod stream_features;
pub use crate::event::Event;
mod client;
pub use client::{Client, oneshot_client::Client as OneshotClient};
pub use client::{Client, simple_client::Client as SimpleClient};
mod component;
pub use crate::component::Component;
mod error;