Files
2025-09-11 09:59:16 +02:00

10 lines
292 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
// Compile protobuf files
tonic_build::configure()
.build_server(false) // We only need the client
.compile(
&["../../proto/transcription.proto"],
&["../../proto"],
)?;
Ok(())
}