1
//! Exit streams
2

            
3
use tor_proto::stream::IncomingStream;
4

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