nushell/crates/nu-stream/src/lib.rs
Jonathan Turner 5f550a355b
Split OutputStream into ActionStream/OutputStream (#3304)
* Split OutputStream into ActionStream/OutputStream

* Fmt

* Missed update

* Cleanup helper names

* Fmt
2021-04-12 14:35:01 +12:00

12 lines
186 B
Rust

mod prelude;
mod input;
mod interruptible;
mod output;
pub use input::*;
pub use interruptible::*;
pub use output::*;
pub use prelude::ToActionStream;
pub use prelude::ToOutputStream;