2019-11-24 23:19:12 +01:00
|
|
|
use derive_new::new;
|
2020-04-13 09:59:57 +02:00
|
|
|
use nu_protocol::hir;
|
2019-11-24 23:19:12 +01:00
|
|
|
|
2020-04-06 09:16:14 +02:00
|
|
|
#[derive(new, Debug)]
|
2019-11-24 23:19:12 +01:00
|
|
|
pub(crate) struct Command {
|
|
|
|
pub(crate) args: hir::Call,
|
|
|
|
}
|