mirror of
https://github.com/nushell/nushell.git
synced 2025-03-08 20:32:01 +01:00
8 lines
144 B
Rust
8 lines
144 B
Rust
|
use crate::Value;
|
||
|
|
||
|
pub struct Example {
|
||
|
pub example: &'static str,
|
||
|
pub description: &'static str,
|
||
|
pub result: Option<Vec<Value>>,
|
||
|
}
|