//! # dmarcguard
//!
//! Official Rust SDK for the [DMARCguard](https://dmarcguard.io) API.
//!
//! DMARCguard helps you monitor and enforce DMARC, SPF, and DKIM on your
//! sending domains. This crate provides idiomatic Rust bindings to the
//! DMARCguard REST API.
//!
//! Learn more at <https://dmarcguard.io>.
/// Crate version, sourced from `Cargo.toml` at build time.
pub const VERSION: &str = env!;
/// Default base URL for the DMARCguard public API.
pub const DEFAULT_API_BASE_URL: &str = "https://api.dmarcguard.io";