aboutsummaryrefslogtreecommitdiff
path: root/lockchain-http/examples/simple-http.rs
blob: 1811c08bc095041409e32f222e02b8d6d71677d9 (plain)
1
2
3
4
5
6
7
8
9
extern crate lockchain_core as lockchain;
extern crate lockchain_http;

fn main() {
    use lockchain::EncryptedBody;
    use lockchain_http::start_server;
    
    start_server::<EncryptedBody>("localhost", "8888");
}