Move XmppCodec and XmppStream to proto module
This commit is contained in:
parent
ec3c7694a7
commit
fde4c2b640
17 changed files with 135 additions and 148 deletions
|
|
@ -20,14 +20,11 @@ compile_error!(
|
|||
"when starttls feature enabled one of tls-native and tls-rust features must be enabled."
|
||||
);
|
||||
|
||||
mod stream_start;
|
||||
mod xmpp_codec;
|
||||
pub use crate::xmpp_codec::{Packet, XmppCodec};
|
||||
mod event;
|
||||
pub use event::Event;
|
||||
mod client;
|
||||
pub mod connect;
|
||||
pub mod xmpp_stream;
|
||||
pub mod proto;
|
||||
|
||||
pub use client::async_client::{Client as AsyncClient, Config as AsyncConfig};
|
||||
mod component;
|
||||
|
|
|
|||
Loading…
Reference in a new issue