mirror of
https://github.com/danbulant/nushell
synced 2026-06-10 10:10:46 +00:00
7 lines
139 B
Rust
7 lines
139 B
Rust
use crate::Value;
|
|
|
|
pub struct Example {
|
|
pub example: &'static str,
|
|
pub description: &'static str,
|
|
pub result: Option<Value>,
|
|
}
|