lockchain-http 0.4.0

Generic HTTP interface crate for the lockchain ecosystem. Can serve both encrypted and cleartext records
Documentation
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");
}