mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-01 07:04:07 +00:00
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
11 lines
372 B
Rust
11 lines
372 B
Rust
use std::io::Result;
|
|
fn main() -> Result<()> {
|
|
prost_build::compile_protos(&["src/user_discovery/types.proto"], &["src/"])?;
|
|
prost_build::Config::new()
|
|
.include_file("client_messages.rs")
|
|
.compile_protos(
|
|
&["../lib/src/model/protobuf/client/messages.proto"],
|
|
&["../lib/src/model/protobuf/client/"],
|
|
)?;
|
|
Ok(())
|
|
}
|