reydenx

Crates.ioreydenx
lib.rsreydenx
version0.1.6
sourcesrc
created_at2023-08-24 11:47:12.213573
updated_at2024-07-18 08:03:44.093349
descriptionImplementation 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
repositoryhttps://github.com/pixel365/reydenx
max_upload_size
id953594
size80,352
Ruslan Semagin (pixel365)

documentation

README

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);
    }
}
Commit count: 7

cargo fmt