diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,14 +5,14 @@ pub mod client; pub mod connection; pub mod error; -pub mod jabber; +pub mod jabber_stream; pub mod jid; pub mod stanza; pub use connection::Connection; use connection::Tls; pub use error::Error; -pub use jabber::JabberStream; +pub use jabber_stream::JabberStream; pub use jid::JID; pub type Result<T> = std::result::Result<T, Error>; |