cloudflare_dns/api/mod.rs
1/// Cloudflare API module.
2///
3/// This module provides the client, models, error types, and caching for interacting
4/// with the Cloudflare API v4.
5pub mod cache;
6pub mod client;
7pub mod error;
8pub mod models;
9
10// Re-export commonly used types for library consumers
11#[allow(unused_imports)]
12pub use cache::DnsCache;
13pub use client::CloudflareClient;
14#[allow(unused_imports)]
15pub use error::{CloudflareError, CloudflareResult};
16pub use models::DnsRecord;