summaryrefslogtreecommitdiff
path: root/build.rs
blob: 5005f6f572a080721c51028f1fb606ee1cfec8c6 (plain)
1
2
3
4
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_prost_build::configure().compile_protos(&["proto/countah.proto"], &["proto/"])?;
    Ok(())
}