aboutsummaryrefslogtreecommitdiff
path: root/src/dyndns_service.rs
diff options
context:
space:
mode:
authorGus Power <gus@infinitesidequests.com>2025-05-21 16:23:55 +0100
committerGus Power <gus@infinitesidequests.com>2025-05-21 16:23:55 +0100
commitd7ce374a1741fdbb5c3aeef1218058a3d1060e88 (patch)
treeac4297e69ce670155fcd3c37c29b085d3707decc /src/dyndns_service.rs
parent9ce9c101a10327b1eb6902133173119c3e0f3732 (diff)
config fallback w/ tests. introduced a macro to remove some test boilerplate around Result<T,E> and having return Ok(())
Diffstat (limited to 'src/dyndns_service.rs')
-rw-r--r--src/dyndns_service.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dyndns_service.rs b/src/dyndns_service.rs
index a80fe4b..3f34a1b 100644
--- a/src/dyndns_service.rs
+++ b/src/dyndns_service.rs
@@ -10,6 +10,8 @@ use std::error::Error;
pub enum DynDnsProvider {
#[serde(rename = "GANDI")]
Gandi(GandiConfig),
+ #[serde(rename = "NOOP")]
+ Noop,
}
pub struct DynDnsService {}