diff --git a/examples/auth.rs b/examples/auth.rs deleted file mode 100644 index fa958b6..0000000 --- a/examples/auth.rs +++ /dev/null @@ -1,17 +0,0 @@ -use irssi_wire::net::wire_api::auth::*; -use irssi_wire::net::wire_api::conversations::*; - -#[tokio::main] -async fn main() -> Result<(), Box> { - let mut client = WireClient::new( - String::from("marco_thomas@genua.de"), - String::from("MarcMK1337#"), - Config::Default, - ); - - let auth_response = client.authentification().await.unwrap(); - - let conversations = client.fetch_conversations(&auth_response).await.unwrap(); - - Ok(()) -}