cartel_api 0.1.0

This crate attemps to provide a wrapper around the http://cartelempire.online/api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::Client;
extern crate dotenv;
use dotenv::dotenv;
use std::env;


#[test]
fn client_test(){
    dotenv().ok();
    let test_client = Client::new(env::var("qez_key").unwrap());
    println!("{}", test_client.api_key);
}