summaryrefslogtreecommitdiff
path: root/build.rs
blob: 7c661fe65b23edbed9457d99ca587dfd0dffa37e (plain)
1
2
3
4
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::compile_protos("proto/helloworld.proto")?;
    Ok(())
}