mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01: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>,
|
|
}
|