blob: e3939d411a3b2e0ea41b4f3aa87ec7c2aedef63e [file] [log] [blame]
Jeongik Cha3cea4812024-12-05 23:04:30 +09001fn 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}