mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
8 lines
194 B
Rust
8 lines
194 B
Rust
fn main() {
|
|
let proto_file = "./rat.proto";
|
|
|
|
tonic_build::configure()
|
|
.build_server(true)
|
|
.compile(&[proto_file], &["."])
|
|
.unwrap();
|
|
} |