forked from extern/nushell
8ee619954d
* cmdline args wip * WIP * redirect working * Add help and examples * Only show flags in signature of more than help
9 lines
156 B
Rust
9 lines
156 B
Rust
use crate::Value;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Example {
|
|
pub example: &'static str,
|
|
pub description: &'static str,
|
|
pub result: Option<Value>,
|
|
}
|