twonly-app/rust/build.rs
otsmr 98fa90a46b
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
start with passwordless recovery
2026-06-16 20:46:15 +02:00

6 lines
231 B
Rust

use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["src/user_discovery/types.proto"], &["src/"])?;
prost_build::compile_protos(&["src/passwordless_recovery/types.proto"], &["src/"])?;
Ok(())
}