2023-11-08 12:56:25 +00:00

11 lines
283 B
Rust

fn main() {
protobuf_codegen_pure::Codegen::new()
.out_dir("src/cs")
.inputs(&[//"proto/mt.proto",
"proto/cs_msgid.proto",
"proto/cs_proto.proto"])
.include("proto")
.run()
.expect("Codegen failed.");
}