This commit is contained in:
Andy Gayton 2024-06-23 15:59:07 -04:00
parent 6797008430
commit 0a2197ea2d
2 changed files with 5 additions and 4 deletions

View File

@ -11,8 +11,9 @@ use nu_plugin_protocol::{
ProtocolInfo, ProtocolInfo,
}; };
use nu_protocol::{ use nu_protocol::{
engine::{ctrlc, Closure}, Config, LabeledError, PipelineData, PluginMetadata, PluginSignature, engine::{ctrlc, Closure},
ShellError, Span, Spanned, Value, Config, LabeledError, PipelineData, PluginMetadata, PluginSignature, ShellError, Span, Spanned,
Value,
}; };
use std::{ use std::{
collections::{btree_map, BTreeMap, HashMap}, collections::{btree_map, BTreeMap, HashMap},

View File

@ -14,16 +14,16 @@ pub use two::Two;
// Engine interface demos // Engine interface demos
mod config; mod config;
mod ctrlc;
mod disable_gc; mod disable_gc;
mod env; mod env;
mod view_span; mod view_span;
mod ctrlc;
pub use config::Config; pub use config::Config;
pub use ctrlc::Ctrlc;
pub use disable_gc::DisableGc; pub use disable_gc::DisableGc;
pub use env::Env; pub use env::Env;
pub use view_span::ViewSpan; pub use view_span::ViewSpan;
pub use ctrlc::Ctrlc;
// Stream demos // Stream demos
mod collect_bytes; mod collect_bytes;