docs: cleanup location of documentation

This commit is contained in:
Yuval Adam
2023-02-15 18:43:22 -06:00
committed by Greg Heartsfield
parent 136e41d234
commit 40abd6858e
7 changed files with 11 additions and 15 deletions
+7
View File
@@ -0,0 +1,7 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.protoc_arg("--experimental_allow_proto3_optional")
.compile(&["../../proto/nauthz.proto"], &["../../proto"])?;
Ok(())
}