10 lines
214 B
Rust
10 lines
214 B
Rust
use std::io::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
tonic_prost_build::configure()
|
|
.build_server(true)
|
|
.build_client(true)
|
|
.compile_protos(&["proto/agent.proto"], &["proto"])?;
|
|
Ok(())
|
|
}
|