1
//! DNS streams
2

            
3
use tor_proto::stream::IncomingStream;
4

            
5
/// Handle an incoming DNS stream
6
#[allow(clippy::unused_async)] // TODO(relay)
7
pub(crate) async fn handle_resolve(_incoming: IncomingStream) -> anyhow::Result<()> {
8
    todo!()
9
}