blob: a7f04944c08df29f9ba9c28072db2fa1783c2d05 (
plain) (
tree)
|
|
#![allow(unused_must_use)]
// #![feature(let_chains)]
// TODO: logging (dropped errors)
pub mod connection;
pub mod error;
pub mod jabber;
pub mod jid;
pub mod stanza;
#[macro_use]
extern crate lazy_static;
pub use connection::Connection;
pub use error::JabberError;
pub use jabber::Jabber;
pub use jid::JID;
pub type Result<T> = std::result::Result<T, JabberError>;
pub async fn login<J: TryInto<JID>, P: AsRef<str>>(jid: J, password: P) -> Result<Connection> {
todo!()
}
#[cfg(test)]
mod tests {
#[tokio::test]
async fn test_login() {
crate::login("test@blos.sm/clown", "slayed").await.unwrap();
}
}
|