mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
8ee619954d
* cmdline args wip * WIP * redirect working * Add help and examples * Only show flags in signature of more than help
8 lines
156 B
Rust
8 lines
156 B
Rust
use crate::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Example {
|
|
pub example: &'static str,
|
|
pub description: &'static str,
|
|
pub result: Option<Value>,
|
|
}
|