#[cfg(not(target_family = "wasm"))]
pub mod client;
#[cfg(not(target_family = "wasm"))]
pub mod dns_ops;
#[cfg(not(target_family = "wasm"))]
pub mod types;
#[cfg(not(target_family = "wasm"))]
pub mod generated;
#[cfg(all(target_family = "wasm", feature = "workers"))]
pub mod workers;
#[cfg(not(target_family = "wasm"))]
pub use client::CloudflareClient;
#[cfg(not(target_family = "wasm"))]
pub use types::{
cf_err, CloudflareApiError, CloudflareError, CloudflareResponse, DnsRecord, DnsRecordInput,
DnsRecordPatch, DnsRecordType, ResultInfo, Zone, ZoneStatus,
};