mirror of
https://github.com/pfzetto/rebacs
synced 2024-11-22 03:02:49 +01:00
7 lines
143 B
Rust
7 lines
143 B
Rust
|
fn main() {
|
||
|
tonic_build::configure()
|
||
|
.build_server(true)
|
||
|
.compile(&["proto/graph.proto"], &["proto"])
|
||
|
.unwrap();
|
||
|
}
|