Initial commit.
[gandi_dns_update.git] / src / main.rs
1 // API Reference: https://api.gandi.net/docs/livedns/
2 // Some inspiration: https://github.com/rmarchant/gandi-ddns/blob/master/gandi_ddns.py
3
4
5 fn main() {
6 println!("Hello, world!");
7 }
8
9 fn get_real_ip() {
10
11 }
12
13 fn get_current_record_ip() {
14
15 }
16
17 fn update_record_ip() {
18
19 }