Skip to content

pixel365/reydenx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
    }
}