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