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