soundcloud-rs 0.2.0

A simple Rust client for the SoundCloud API
Documentation
1
2
3
4
5
6
7
8
9
10
use std::error::Error;

use tokio;
use soundcloud_rs::{query::{SearchResultsQuery, SearchAllQuery, AlbumQuery}, Client};

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let client = Client::new().await?;
    Ok(())
}