Make models and client modules public

This commit is contained in:
Patrick Auernig 2018-03-22 18:12:41 +01:00
parent 9a9fc504fe
commit ca1a84eeee
1 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,10 @@ extern crate serde_json;
extern crate byte;
extern crate uuid;
mod models;
mod client;
#[macro_use]
mod macros;
pub mod models;
pub mod client;
pub use client::Client;