mirror of
https://github.com/nushell/nushell
synced 2025-01-16 07:04:09 +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>,
|
|
}
|