6 lines
121 B
Rust
6 lines
121 B
Rust
|
extern crate prost_build;
|
||
|
|
||
|
fn main() {
|
||
|
prost_build::compile_protos(&["proto/notice.proto"], &["proto/"]).unwrap();
|
||
|
}
|