nostr-rs-relay/build.rs

5 lines
123 B
Rust
Raw Normal View History

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("proto/nauthz.proto")?;
Ok(())
}