mirror of
https://github.com/nushell/nushell
synced 2025-01-08 11:18:58 +00:00
6 lines
85 B
Rust
6 lines
85 B
Rust
use crate::Value;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct Args {
|
|
args: Vec<Value>,
|
|
}
|