qbittorrent_web_api/api-gen/tests/another_struct_name.rs
2022-07-10 17:06:19 +02:00

17 lines
337 B
Rust

use anyhow::Result;
use api_gen::QBittorrentApiGen;
const USERNAME: &str = "admin";
const PASSWORD: &str = "adminadmin";
const BASE_URL: &str = "http://localhost:8080";
#[derive(QBittorrentApiGen)]
struct Foo {}
#[tokio::main]
async fn main() -> Result<()> {
let _ = Foo::login(BASE_URL, USERNAME, PASSWORD).await?;
Ok(())
}