google-dns-rs

Usage

```rust use googlednsrs::api::{Dns, DoH, Result};

[tokio::main]

async fn main() -> Result<()> { let github = DoH::new("github.com".to_string()).resolve().await?; println!("{:#?}", github); Ok(()) } ```

License

MIT