blob: 9ec122fb417c135132e4a6398fbbe976e3888817 (
plain)
1
2
3
4
5
6
7
8
|
//! 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) use channel::ChannelHouseKeepingTask;
|