nushell/src/commands/args.rs

7 lines
85 B
Rust
Raw Normal View History

2019-05-11 10:08:21 +02:00
use crate::Value;
#[derive(Debug, Clone)]
pub struct Args {
args: Vec<Value>,
}