initial commit

This commit is contained in:
2025-09-11 09:59:16 +02:00
commit ab17a8ac21
19 changed files with 2587 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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(())
}