6 releases
0.1.6 | Jul 18, 2024 |
---|---|
0.1.5 | Jun 28, 2024 |
0.1.3 | Dec 1, 2023 |
0.1.2 | Sep 27, 2023 |
0.1.1 | Aug 24, 2023 |
#136 in Games
43 downloads per month
42KB
789 lines
REYDEN-X
Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.
Quickstart
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);
}
}
Dependencies
~7–19MB
~274K SLoC