pub trait Plugin: Any + Send + Sync { // Required method fn handle_command(&self, command: String) -> Result<String, Box<dyn Error>>; }