1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! `google` module having the Rust code generated from Google Bigtable V2 gPRC API proto file.
#[path = "google"]
pub mod bigtable {
    #[path = "google.bigtable.v2.rs"]
    pub mod v2;
}

#[path = "google"]
pub mod cloud {
    #[path = "./"]
    pub mod conformace {
        #[path = "./"]
        pub mod bigtable {
            #[path = "google.cloud.conformance.bigtable.v2.rs"]
            pub mod v2;
        }
    }
}

#[path = "google/google.rpc.rs"]
pub mod rpc;