Crates.io | reydenx |
lib.rs | reydenx |
version | 0.1.6 |
source | src |
created_at | 2023-08-24 11:47:12.213573 |
updated_at | 2024-07-18 08:03:44.093349 |
description | Implementation of the Reyden-X API. Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management. |
homepage | |
repository | https://github.com/pixel365/reydenx |
max_upload_size | |
id | 953594 |
size | 80,352 |
use reydenx::{
client::{Auth, Client},
user::{account, balance},
};
fn main() {
let mut client = Client::new(String::from("EMAIL"), String::from("PASSWORD"));
if let Ok(client) = client.auth() {
let res = balance(client);
println!("{:#?}", res);
let res = account(client);
println!("{:#?}", res);
}
}