11 lines
283 B
Rust
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.");
|
|
}
|