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
This commit is contained in:
Michael Angerman
2022-06-16 09:58:38 -07:00
committed by GitHub
parent 28c07a5072
commit bc48b4553c
7 changed files with 17 additions and 8 deletions

View File

@ -13,6 +13,7 @@ mod formats;
mod generators;
mod hash;
mod math;
mod misc;
mod network;
mod path;
mod platform;
@ -38,6 +39,7 @@ pub use formats::*;
pub use generators::*;
pub use hash::*;
pub use math::*;
pub use misc::*;
pub use network::*;
pub use path::*;
pub use platform::*;