1
0
Fork 0
This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
command_gateway/build.rs

4 lines
127 B
Rust
Raw Permalink Normal View History

2023-01-26 22:12:59 +01:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
2023-01-31 19:38:48 +01:00
tonic_build::compile_protos("proto/interpreter.proto")?;
2023-01-26 22:12:59 +01:00
Ok(())
}