//! Diagnostics Node
//!//! Publishes Docker container and system resource metrics to diagnostic topics.
pubmodnode;pubusenode::DiagnosticsNode;/// Run the diagnostics node
////// This is the entry point used by the generated node registry.
pub async fnrun()->Result<(), Box<dyn std::error::Error +Send+Sync>>{let node =DiagnosticsNode::new().await?;
node.run().await?;Ok(())}