fwcl 0.1.1

FitWorld Client Library
Documentation
#[macro_use] extern crate serde_derive;
#[macro_use] extern crate serde_json;

pub mod api_results;
pub mod api_params;
pub mod base_facade;
pub mod login;


pub fn hello_test() {
    println!("hello from ma lib");
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}