rename jabber to jabber_stream

This commit is contained in:
cel 🌸 2024-12-04 17:40:56 +00:00
parent 21f10a0b43
commit 03764f8ced
2 changed files with 2 additions and 2 deletions

View File

@ -5,14 +5,14 @@
pub mod client; pub mod client;
pub mod connection; pub mod connection;
pub mod error; pub mod error;
pub mod jabber; pub mod jabber_stream;
pub mod jid; pub mod jid;
pub mod stanza; pub mod stanza;
pub use connection::Connection; pub use connection::Connection;
use connection::Tls; use connection::Tls;
pub use error::Error; pub use error::Error;
pub use jabber::JabberStream; pub use jabber_stream::JabberStream;
pub use jid::JID; pub use jid::JID;
pub type Result<T> = std::result::Result<T, Error>; pub type Result<T> = std::result::Result<T, Error>;