nushell/crates/nu-cli/src/lib.rs

8 lines
157 B
Rust
Raw Normal View History

2021-09-10 00:09:40 +02:00
mod completions;
2021-08-10 20:51:08 +02:00
mod errors;
mod syntax_highlight;
2021-09-10 00:09:40 +02:00
pub use completions::NuCompleter;
pub use errors::report_error;
2021-08-10 20:51:08 +02:00
pub use syntax_highlight::NuHighlighter;