//! Shared state and store for the iroh-dns-server
usecrate::{dns::DnsHandler,store::ZoneStore};/// The shared app state.
#[derive(Clone)]pubstructAppState{/// The pkarr DNS store
pubstore: ZoneStore,
/// Handler for DNS requests
pubdns_handler: DnsHandler,
}