summaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/tasks.rs
blob: 2c07921bc86fd5b3671c58e3ac7a643864b6584b (plain)
1
2
3
4
5
6
7
8
9
//! Background tasks of the arti-relay.
//!
//! This module has all background tasks/reactors that runs in the background during the life time
//! of a relay.

mod channel;
pub(crate) mod listeners;

pub(crate) use channel::ChannelHouseKeepingTask;