Fix fmt in resolver.rs

Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
Jiahao XU 2024-08-11 16:49:07 +10:00 committed by GitHub
parent eb289d0dd2
commit 934c3f370b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,13 +1,8 @@
use std::{net::SocketAddr, sync::Arc};
use hickory_resolver::{
config::{
LookupIpStrategy,
ResolverConfig,
ResolverOpts,
},
system_conf,
TokioAsyncResolver,
config::{LookupIpStrategy, ResolverConfig, ResolverOpts},
system_conf, TokioAsyncResolver,
};
use once_cell::sync::OnceCell;
use reqwest::dns::{Addrs, Name, Resolve, Resolving};