/// Define a GBI command macro.
///
/// This macro simplifies the creation of GBI command functions.
/// It takes a name and a processing expression and generates a function with the specified name.
///
/// # Example
///
/// ```rust ignore
/// gbi_command!(my_command, |params| {
/// // processing logic here
/// });
/// ```
pub use gbi_command;