Skip to main content

trojan_ddns/
lib.rs

1//! Dynamic DNS update service with Cloudflare support.
2
3mod cloudflare;
4mod error;
5mod ip;
6mod runner;
7
8pub use error::DdnsError;
9pub use runner::ddns_loop;