Skip to main content

running_process/broker/backend_lifecycle/
mod.rs

1//! Shared backend lifecycle primitives used by broker and direct clients.
2
3pub mod identity;
4pub mod probe;
5#[cfg(feature = "client-async")]
6pub mod probe_async;
7pub mod verify_pid;
8
9pub use identity::DaemonProcess;