water_client 0.1.1

easy http client for more control over http connection and requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod models;
pub(crate) mod connection;
pub (crate) mod  macros;
pub fn add(left: u64, right: u64) -> u64 {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}