kstone-proto 0.1.0

Protocol Buffers definitions for KeystoneDB gRPC API
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .build_client(true)
        .compile(&["proto/keystone.proto"], &["proto"])?;
    Ok(())
}