cfdns 0.1.0

A Cloudflare Dynamic DNS update tool
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2025 Matthew Lyon
// SPDX-License-Identifier: Apache-2.0
mod setup;
pub use setup::*;
mod update;
pub use update::*;
mod edit;
pub use edit::*;
mod show;
pub use show::*;
mod schedule;
pub use schedule::*;