1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
[‼️]: ✏️README.mdt # idns ```rust use aok::{Result, OK}; #[tokio::test] async fn test() -> Result<()> { let host = "mail.i18n.site"; let r = idns::ip(host).await?; dbg!(r); OK } ```