1
2
3
4
5
6
7
8
9
10
//! Daemons
//!
//! This module contains tasks that run in the background and perform
//! some ongoing responsibility.
//!
//! Unlike [services][crate::services], daemons are not exposed as a
//! client/server via the [registry][crate::registry].

pub mod sermux;
pub mod shells;