1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-03-16 01:50:30 -04:00

8 lines
241 B
Rust
Raw Normal View History

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.protoc_arg("--experimental_allow_proto3_optional")
2023-02-25 14:49:35 -06:00
.compile(&["proto/nauthz.proto"], &["proto"])?;
Ok(())
}