mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +00:00
Pub expose InterruptibleStream and InputStream. (#1952)
This allows crate users to make sure their long-running streams can be interrupted with ctrl-c.
This commit is contained in:
parent
bf459e09cb
commit
2fa83b0bbe
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ pub use crate::data::primitive;
|
|||
pub use crate::data::value;
|
||||
pub use crate::env::environment_syncer::EnvironmentSyncer;
|
||||
pub use crate::env::host::BasicHost;
|
||||
pub use crate::stream::OutputStream;
|
||||
pub use crate::stream::{InputStream, InterruptibleStream, OutputStream};
|
||||
pub use nu_value_ext::ValueExt;
|
||||
pub use num_traits::cast::ToPrimitive;
|
||||
|
||||
|
|
Loading…
Reference in a new issue