//! Platform-specific network adapter fetcher implementations.
//!
//! This module provides conditional compilation for platform-specific
//! implementations of the [`AddressFetcher`] trait.
//!
//! # Platform Support
//!
//! - **Windows**: Uses `GetAdaptersAddresses` API via the `windows` crate.
//! - **Linux**: Planned for future (netlink).
//! - **macOS**: Planned for future (getifaddrs).
pub use WindowsFetcher;
// Re-export platform-specific fetcher as PlatformFetcher for convenience
pub use WindowsFetcher as PlatformFetcher;