From: Greg Burri Date: Wed, 14 Jul 2021 07:13:30 +0000 (+0200) Subject: Change the title X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=df818a0cc2eb8f7dfc492d29d3cc0397eefefd4c;p=gandi_dns_update.git Change the title --- diff --git a/src/main.rs b/src/main.rs index 79b2262..cd54e9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,12 +1,10 @@ /* * API Reference: https://api.gandi.net/docs/livedns/ + * * Some similar implementations: * - https://github.com/rmarchant/gandi-ddns/blob/master/gandi_ddns.py * - https://github.com/brianhp2/gandi-automatic-dns * - * TODO: - * - Log to stdout with (at least) timestamps. - * - Renew function. */ #![cfg_attr(debug_assertions, allow(unused_variables, unused_imports, dead_code))] @@ -23,8 +21,7 @@ use crate::config::Config; const FILE_CONF: &str = "config.ron"; fn main() -> Result<()> { - - println!("GANDI DynDNS"); + println!("=== GANDI LiveDNS updater ==="); let config = Config::read(FILE_CONF)?;