mirror of
https://github.com/TeamPiped/piped-rust-sdk.git
synced 2024-08-14 23:56:06 +00:00
8a7a87824f
* Make functions take references, moved user agent into lib * Improved error handling
15 lines
342 B
Rust
15 lines
342 B
Rust
use piped::PipedClient;
|
|
use reqwest::Client;
|
|
|
|
const INSTANCE: &'static str = "https://pipedapi.kavin.rocks";
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let httpclient = Client::new();
|
|
|
|
let client = PipedClient::new(&httpclient, INSTANCE);
|
|
|
|
let streams = client.trending("US".to_string()).await.unwrap();
|
|
|
|
println!("{:#?}", streams);
|
|
}
|