* wip * wip * wip * wip not a fan of the way I do handles .. * errors and async semantic * fix example
8 lines
137 B
Rust
8 lines
137 B
Rust
use std::io::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
prost_build::compile_protos(&["protocol/ffi.proto"], &["protocol/"])?;
|
|
Ok(())
|
|
}
|
|
|