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