mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-04-18 15:52:54 +00:00
11 lines
236 B
Rust
11 lines
236 B
Rust
use std::io::Result;
|
|
fn main() -> Result<()> {
|
|
prost_build::compile_protos(
|
|
&[
|
|
"src/user_discovery/types.proto",
|
|
"src/key_verification/types.proto",
|
|
],
|
|
&["src/"],
|
|
)?;
|
|
Ok(())
|
|
}
|