From 778c1a0dfd8c621c9ae2f6a7eeea8ad72964f9d5 Mon Sep 17 00:00:00 2001 From: Sergey Savelyev Date: Wed, 31 Dec 2025 00:27:20 -0500 Subject: [PATCH] add a comment --- examples/simple_command/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/simple_command/src/main.rs b/examples/simple_command/src/main.rs index e4115dd..e994e1b 100644 --- a/examples/simple_command/src/main.rs +++ b/examples/simple_command/src/main.rs @@ -45,6 +45,7 @@ fn handle_command(header: CommandHeader, command: SimpleCommandA) -> anyhow::Res info!("Command Received:\n timestamp: {timestamp}\n a: {a}\n b: {b}\n c: {c}"); + // This gets sent back to the source of the command Ok(format!( "Successfully Received Command! timestamp: {timestamp} a: {a} b: {b} c: {c}" ))