bazel_remote_apis_rs/lib.rs
1pub mod build {
2 pub mod bazel {
3 pub mod remote {
4 pub mod execution {
5 pub mod v2 {
6 tonic::include_proto!("build.bazel.remote.execution.v2");
7 }
8 }
9 }
10
11 pub mod semver {
12 tonic::include_proto!("build.bazel.semver");
13 }
14 }
15}
16
17pub mod google {
18 pub mod rpc {
19 tonic::include_proto!("google.rpc");
20 }
21 pub mod longrunning {
22 tonic::include_proto!("google.longrunning");
23 }
24}