cloudflare-dns 0.1.4

A TUI for managing Cloudflare DNS records programmatically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Cloudflare API module.
///
/// This module provides the client, models, error types, and caching for interacting
/// with the Cloudflare API v4.
pub mod cache;
pub mod client;
pub mod error;
pub mod models;

// Re-export commonly used types for library consumers
#[allow(unused_imports)]
pub use cache::DnsCache;
pub use client::CloudflareClient;
#[allow(unused_imports)]
pub use error::{CloudflareError, CloudflareResult};
pub use models::DnsRecord;