Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[‼️]: ✏️README.mdt

# idns

```rust
use aok::{Result, OK};
use hickory_proto::rr::RData;

#[tokio::test]
async fn test() -> Result<()> {
  use idns::{A, AAAA};
  let host = "mail.i18n.site";
  let r = A(host).await?;
  dbg!(&r);
  OK
}
```