aboutsummaryrefslogtreecommitdiffstats
path: root/jabber/src/lib.rs
blob: 8855ca7041bdf1dc5c8acb6d3725e45b6355d4e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![allow(unused_must_use)]
// #![feature(let_chains)]

// TODO: logging (dropped errors)
pub mod client;
pub mod connection;
pub mod error;
pub mod jabber_stream;

pub use connection::Connection;
pub use error::Error;
pub use jabber_stream::JabberStream;
pub use jid::JID;

pub type Result<T> = std::result::Result<T, Error>;

pub use client::connect_and_login;

#[cfg(test)]
mod tests {
    // #[tokio::test]
    // async fn test_login() {
    //     crate::login("test@blos.sm/clown", "slayed").await.unwrap();
    // }
}