1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! # BrasilAPI rust client wrapper
//!
//! ## Why I created this?
//! * Well, I plan to use this API at the company I do work
//! * I'm very exhausted to use any language we have on current stack (c#, python, javascript), for real...
//! * A friend of mine talk about Rust every single day
//!
//! ## This code resembles X
//! Yes, probably, event reading some of the official documentation, I checked some cargo SDKs and wrappers, because I plan to use it soon 
//! Sorry, I cheated :(
//!
#![doc = include_str!("../README.md")]
#[macro_use] 
extern crate lazy_static;

/**
This module should be used to get the Helper Client
*/
pub mod client;
pub mod definitions;
pub mod constants;
pub mod errors;
mod request;

pub use crate::definitions::*;