gandi-live-dns-rust/src/ip_source/ip_source.rs

8 lines
181 B
Rust

use async_trait::async_trait;
#[async_trait]
pub trait IPSource {
async fn get_ipv4(&self) -> anyhow::Result<String>;
async fn get_ipv6(&self) -> anyhow::Result<String>;
}