| Crates.io | reydenx |
| lib.rs | reydenx |
| version | 0.1.7 |
| created_at | 2023-08-24 11:47:12.213573+00 |
| updated_at | 2025-08-28 11:36:13.224923+00 |
| 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 | 95,156 |
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);
}
}