ddns-a 0.1.1

A lightweight Dynamic DNS client for Windows that monitors IP address changes and notifies external services via webhooks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Hybrid IP address monitor combining API events with polling.
//!
//! This module provides:
//! - [`HybridMonitor`]: Builder/configuration for hybrid monitoring
//! - [`HybridStream`]: Stream that yields IP change events from both sources

mod monitor;
mod stream;

pub use monitor::HybridMonitor;
pub use stream::HybridStream;

#[cfg(test)]
mod monitor_tests;
#[cfg(test)]
mod stream_tests;
#[cfg(test)]
mod test_fixtures;