mirror of
https://github.com/danbulant/nushell
synced 2026-06-10 18:20:25 +00:00
* 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>,
|
|
}
|