//! EchoOperator — returns the input message as the output.
use crateOperatorError;
use crate;
use async_trait;
/// An operator implementation that echoes the input message back as output.
/// Used for testing orchestration, environment, and hook integrations.
;