mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-06-25 04:44:07 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
6 lines
231 B
Rust
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(())
|
|
}
|