use helius::error::Result;
use helius::types::Cluster;
use helius::Helius;
#[tokio::main]
async fn main() -> Result<()> {
let api_key: &str = "your_api_key";
let cluster: Cluster = Cluster::MainnetBeta;
let helius: Helius = Helius::new(api_key, cluster).unwrap();
let webhook_id = "your_webhook_id";
let response: Result<()> = helius.delete_webhook(webhook_id).await;
println!("Webhook deleted {:?}", response);
Ok(())
}