soundcloud-rs 0.1.0

A simple Rust client for the SoundCloud API
Documentation
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(())
}