diff options
author | 2024-12-04 02:09:07 +0000 | |
---|---|---|
committer | 2024-12-04 02:09:07 +0000 | |
commit | 4886396044356d2676a77c3900af796fe7641f42 (patch) | |
tree | 685c67b7db0f22a7262fc6431d7849d63c510e66 /src/lib.rs | |
parent | e0373c0520e7fae792bc907e9c500ab846d34e31 (diff) | |
download | luz-4886396044356d2676a77c3900af796fe7641f42.tar.gz luz-4886396044356d2676a77c3900af796fe7641f42.tar.bz2 luz-4886396044356d2676a77c3900af796fe7641f42.zip |
implement client
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -29,8 +29,8 @@ pub async fn login<J: AsRef<str>, P: AsRef<str>>(jid: J, password: P) -> Result< #[cfg(test)] mod tests { - #[tokio::test] - async fn test_login() { - crate::login("test@blos.sm/clown", "slayed").await.unwrap(); - } + // #[tokio::test] + // async fn test_login() { + // crate::login("test@blos.sm/clown", "slayed").await.unwrap(); + // } } |