geco-consul-connector 1.1.0

Library used for connecting to GECO Consul server
Documentation
1
2
3
4
5
6
7
8
9
10
fn main()->Result<(),Box<dyn std::error::Error>>{
    // Compiling protos using path on build time
    tonic_build::configure()
        .build_server(false)
        .compile(
            &["protos/connector.proto"],
            &["protos"],
        )?;
    Ok(())
}