pub async fn delete_email(client: Client, email: &str) -> bool
Expand description

Delete an email addres of the currently logged in user

use gitea_rust_sdk::{client::Client, user::emails::delete_email, URL, TOKEN};
use tokio;

#[tokio::main]
async fn main()
{
    let client = Client::new(&URL, &TOKEN, "schorch/gitea_rust_sdk").unwrap();
    let success = delete_email(client, "foo@bar.at").await;
}