1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! Datadog API Types /// The Base Datadog API URL pub mod base; /// API Version Types pub mod version; /// Route Type pub mod route; /// Prelude to re-export common types pub mod prelude { pub use super::{ base::{self, *}, route::{self, *}, version::{self, *}, }; }