mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +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>,
|
|
}
|