Skip to main content

nu_engine/
command_prelude.rs

1#[doc(no_inline)]
2pub use crate::CallExt;
3
4#[doc(no_inline)]
5pub use nu_protocol::{
6    BuiltinCompletion, ByteStream, ByteStreamType, Category, Completion, ErrSpan, Example, Flag,
7    IntoInterruptiblePipelineData, IntoPipelineData, IntoSpanned, IntoValue, Parameter,
8    PipelineData, PositionalArg, Record, ShellError, ShellWarning, Signature, Span, Spanned,
9    SyntaxShape, Type, Value,
10    ast::CellPath,
11    engine::{Call, Command, EngineState, Stack, StateWorkingSet},
12    record,
13    shell_error::{io::*, job::*},
14    test_record,
15};