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

pub(crate) mod channel;
pub(crate) mod crypto;
pub(crate) mod descriptor;
pub(crate) mod listeners;

pub(crate) use channel::ChannelHouseKeepingTask;
pub(crate) use descriptor::RelayDescriptorPublisherTask;