8 lines
128 B
Rust
8 lines
128 B
Rust
use derive_new::new;
|
|
use nu_protocol::hir;
|
|
|
|
#[derive(new, Debug)]
|
|
pub(crate) struct Command {
|
|
pub(crate) args: hir::Call,
|
|
}
|