tokio-xmpp: add onshot_client

This commit is contained in:
Astro 2020-03-18 20:48:54 +01:00
commit 2cd1ad217b
4 changed files with 194 additions and 1 deletions

View file

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