#[cfg(all(not(feature = "web"), feature = "js_runtime"))]
use super::Command;
pub trait Plugin: Send + Sync {
fn plugin_name(&self) -> &'static str;
#[cfg(all(not(feature = "web"), feature = "js_runtime"))]
fn as_command(&mut self) -> Option<&mut dyn Command> {
None
}
}