Files
osirose-new/api-service/build.rs

7 lines
206 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.compile_well_known_types(true)
.compile_protos(&["../proto/auth.proto"], &["../proto"])?;
Ok(())
}