Skip to content

bruno-ortiz/rico.rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rico.rs

ci

rico.com.vc http client written in rust.

It's pretty straight forward to use. Just create a client by calling the login function.

use rico_rs::RicoClient;

#[tokio::main]
async fn main() {
    let c = RicoClient::login("<username>".into(), "password".into())
        .await
        .unwrap();
   
    let c_info = c.customer_info().await.unwrap();
    println!("{:?}", c_info);
    
    let summary = c.summary().await.unwrap();
    println!("{:?}", summary);
}

Be aware that for now only the customer_info and the summary API's are implemented.

For info on what data this API's fetch, please see the files:

About

A rico.com.vc http client.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages