lightning-storage-server 0.4.0

A client library for interacting with lightning storage server
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .protoc_arg("-I=..")
        .compile(&["proto/lss.proto"], &["proto"])?;
    Ok(())
}