tokio-xmpp: rename Client to AsyncClient

This commit is contained in:
Astro 2020-05-30 00:07:36 +02:00
commit 537b4825a8
6 changed files with 298 additions and 294 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, simple_client::Client as SimpleClient};
pub use client::{async_client::Client as AsyncClient, simple_client::Client as SimpleClient};
mod component;
pub use crate::component::Component;
mod error;