roxid 0.5.0

A Terminal User Interface (TUI) for managing and executing YAML-based pipelines
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(false)
        .build_client(true)
        .compile_protos(&["proto/pipeline.proto"], &["proto"])?;
    Ok(())
}