mirror of
https://git.alemi.dev/mumble-stats-api.git
synced 2024-11-12 19:59:19 +01:00
alemi
2f4b52e09d
just imported mumble's .proto file and added prost to get the rust structs Co-authored-by: frelodev <frelodev@gmail.com>
9 lines
168 B
Rust
9 lines
168 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::configure()
|
|
.compile(
|
|
&["src/tcp/mumble.proto"],
|
|
&["src/tcp"],
|
|
)
|
|
.unwrap();
|
|
Ok(())
|
|
}
|