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

8 lines
157 B
Rust
Raw Normal View History

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