ddns-a 0.1.1

A lightweight Dynamic DNS client for Windows that monitors IP address changes and notifies external services via webhooks
Documentation
//! Network layer for fetching and representing adapter information.
//!
//! This module provides types and traits for:
//! - Representing network adapter snapshots ([`AdapterSnapshot`])
//! - IP version filtering ([`IpVersion`])
//! - Adapter type classification ([`AdapterKind`])
//! - Fetching adapter information ([`AddressFetcher`])
//! - Adapter filtering ([`filter`])
//! - Platform-specific implementations ([`platform`])

mod adapter;
mod fetcher;
pub mod filter;
pub mod platform;

#[cfg(test)]
mod filter_tests;

pub use adapter::{AdapterKind, AdapterSnapshot, IpVersion};
pub use fetcher::{AddressFetcher, FetchError};