mirror of
https://github.com/mii443/usls.git
synced 2025-08-22 15:45:41 +00:00
8 lines
134 B
Rust
8 lines
134 B
Rust
use std::io::Result;
|
|
|
|
fn main() -> Result<()> {
|
|
prost_build::compile_protos(&["src/utils/onnx.proto3"], &["src"])?;
|
|
|
|
Ok(())
|
|
}
|