Files
Archive/trojanrust/build.rs
2024-03-05 02:32:38 -08:00

5 lines
126 B
Rust

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