#[derive(Debug)]
pub struct CommandRegistration {
pub command_id: &'static str,
pub result_type: &'static str,
pub result_type_crate: &'static str,
pub crate_name: &'static str,
pub args: &'static [crate::reflection::OperationArgField],
pub description: Option<&'static str>,
}
inventory::collect!(CommandRegistration);