nushell/crates/nu-command/src/misc/mod.rs
Michael Angerman bc48b4553c
Move the history and tutor commands out of core_commands (#5813)
* move history and tutor commands from core to misc

* add in the Misc Category for the history and tutor commands
2022-06-16 09:58:38 -07:00

6 lines
73 B
Rust

mod history;
mod tutor;
pub use history::History;
pub use tutor::Tutor;