1 2 3 4 5 6 7 8 9 10 11
use std::error::Error; use tokio; use soundcloud_rs::{Client}; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { let client = Client::new().await?; Ok(()) }