move proto dir to top level

This commit is contained in:
Nikos Papadakis 2023-06-23 14:39:11 +03:00
parent 3c779c6b64
commit 48ecd99689
Signed by untrusted user who does not match committer: nikos
GPG key ID: 78871F9905ADFF02
2 changed files with 1 additions and 1 deletions

View file

@ -1,6 +1,6 @@
fn main() { fn main() {
tonic_build::configure() tonic_build::configure()
.build_client(true) .build_client(true)
.compile(&["proto/agent.proto"], &["proto"]) .compile(&["../proto/agent.proto"], &["../proto"])
.unwrap(); .unwrap();
} }