From df818a0cc2eb8f7dfc492d29d3cc0397eefefd4c Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Wed, 14 Jul 2021 09:13:30 +0200 Subject: [PATCH] Change the title --- src/main.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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)?; -- 2.45.1