firestore_grpc/lib.rs
1pub mod google {
2 pub mod firestore {
3 pub mod v1 {
4 tonic::include_proto!("google.firestore.v1");
5 }
6 pub mod v1beta1 {
7 tonic::include_proto!("google.firestore.v1beta1");
8 }
9 }
10 pub mod rpc {
11 tonic::include_proto!("google.rpc");
12 }
13 pub mod r#type {
14 tonic::include_proto!("google.r#type");
15 }
16}
17
18pub use google::firestore::*;
19pub use tonic;