mirror of
https://github.com/nushell/nushell.git
synced 2025-05-11 13:34:26 +02:00
8 lines
139 B
Rust
8 lines
139 B
Rust
use crate::Value;
|
|
|
|
pub struct Example {
|
|
pub example: &'static str,
|
|
pub description: &'static str,
|
|
pub result: Option<Value>,
|
|
}
|