main() -> Result<(), Box<dyn std::error::Error>>1 fn main() -> Result<(), Box<dyn std::error::Error>> {
2     let proto_file = "../../libs/debian_service/proto/DebianService.proto";
3 
4     tonic_build::compile_protos(proto_file).unwrap();
5 
6     Ok(())
7 }
8