1
2
3
4
5
6
7
8
9
10
11
#[cfg(
    any(
        feature = "google-datastore-admin-v1",
        feature = "google-datastore-admin-v1beta1",
    )
)]
pub mod admin;
#[cfg(any(feature = "google-datastore-v1"))]
pub mod v1;
#[cfg(any(feature = "google-datastore-v1beta3"))]
pub mod v1beta3;