gcloud_sdk/apis.rs
1#![allow(
2 clippy::large_enum_variant,
3 clippy::too_many_arguments,
4 clippy::derive_partial_eq_without_eq
5)]
6
7pub const CERTIFICATES: &[u8] = include_bytes!("../data/roots.pem");
8
9#[allow(unused_macros)]
10macro_rules! include_proto {
11 ($package: tt) => {
12 include!(concat!("../genproto", concat!("/", $package, ".rs")));
13 };
14}
15
16include!("google_apis.rs");