bestool-alertd 8.0.0

(Internal) BES tooling: healthcheck daemon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use tokio::sync::mpsc::UnboundedSender;

use super::check::Check;

/// Progress events emitted while a doctor sweep runs.
#[derive(Debug, Clone)]
pub enum DoctorEvent {
	/// A check has produced a result.
	Completed(Check),
}

pub type ProgressSender = UnboundedSender<DoctorEvent>;