1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
extern crate tiny_http;

extern crate zif_identity;

pub mod errors;
pub mod address;
pub mod post;
pub mod postbox;
pub mod net_listener;
pub mod net_client;

pub mod http_listener;

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