ddns-a 0.1.2

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
//! DDNS-A: Dynamic DNS Address Monitor
//!
//! A library for monitoring IP address changes on network adapters
//! and notifying external services via webhooks.

pub mod config;
pub mod monitor;
pub mod network;
pub mod state;
pub mod time;
pub mod webhook;