pub trait MessageSender: Send + Sync {
// Required methods
fn send_dm(&self, root: &Path, agent_id: &str, body: &str) -> Result<()>;
fn broadcast(&self, root: &Path, channel_id: &str, body: &str) -> Result<()>;
}pub trait MessageSender: Send + Sync {
// Required methods
fn send_dm(&self, root: &Path, agent_id: &str, body: &str) -> Result<()>;
fn broadcast(&self, root: &Path, channel_id: &str, body: &str) -> Result<()>;
}