1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(
    any(
        feature = "google-firestore-admin-v1",
        feature = "google-firestore-admin-v1beta1",
        feature = "google-firestore-admin-v1beta2",
    )
)]
pub mod admin;
#[cfg(any(feature = "google-firestore-bundle"))]
pub mod bundle;
#[cfg(any(feature = "google-firestore-v1"))]
pub mod v1;
#[cfg(any(feature = "google-firestore-v1beta1"))]
pub mod v1beta1;