mirror of
https://github.com/nushell/nushell.git
synced 2024-12-01 21:03:58 +01:00
56307553ae
* plugin trait * impl of trait * record and absolute path * plugin example crate * clippy error * correcting cargo * evaluated call for plugin
8 lines
221 B
Rust
8 lines
221 B
Rust
mod call_ext;
|
|
mod documentation;
|
|
mod eval;
|
|
|
|
pub use call_ext::CallExt;
|
|
pub use documentation::{generate_docs, get_brief_help, get_documentation, get_full_help};
|
|
pub use eval::{eval_block, eval_expression, eval_operator};
|