myust 1.0.9

A rich and hybrid mystb.in API wrapper for Rust 🦀
Documentation
1
2
3
4
5
6
7
8
9
#[tokio::test]
async fn delete_bookmark() {
    let client = myust::Client::new()
        .auth(std::env::var("MYSTBIN_TOKEN").unwrap())
        .await;
    client.delete_bookmark("InfraredYukonEmpty").await.unwrap();
    let bm = client.get_user_bookmarks().await.unwrap();
    println!("{bm:#?}")
}