Files
openlan-cgw/build.rs
Paul White 6a0344aa87 cgw: initial commit
Signed-off-by: Paul White <paul@shasta.cloud>
2024-03-17 20:33:16 -07:00

5 lines
124 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("src/proto/cgw.proto")?;
Ok(())
}