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