mirror of
https://github.com/kristoferssolo/transmission-rpc.git
synced 2025-10-21 20:10:37 +00:00
26 lines
719 B
Rust
26 lines
719 B
Rust
extern crate transmission_rpc;
|
|
|
|
use dotenv::dotenv;
|
|
use std::env;
|
|
use transmission_rpc::types::{BasicAuth, Result, RpcResponse, SessionGet};
|
|
use transmission_rpc::TransClient;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
dotenv().ok();
|
|
env_logger::init();
|
|
let url = env::var("TURL")?;
|
|
let basic_auth = BasicAuth {
|
|
user: env::var("TUSER")?,
|
|
password: env::var("TPWD")?,
|
|
};
|
|
let client = TransClient::with_auth(&url, basic_auth);
|
|
let response: Result<RpcResponse<SessionGet>> = client.session_get().await;
|
|
match response {
|
|
Ok(_) => println!("Yay!"),
|
|
Err(_) => panic!("Oh no!")
|
|
}
|
|
println!("Rpc response is ok: {}", response?.is_ok());
|
|
Ok(())
|
|
}
|