Files
nushell/crates/nu-cli/src/commands/history/mod.rs
Hofer-Julian 50102bf69b Move history into their own module (#11308)
# Description

Since there are plans to add more history commands, it seems sensible to
put them into their own module and category

https://github.com/nushell/nushell/pull/10440#issuecomment-1731408785

# User-Facing Changes

The history commands are in the category "History" rather than "Misc"
2023-12-15 13:17:12 +01:00

6 lines
104 B
Rust

mod history_;
mod history_session;
pub use history_::History;
pub use history_session::HistorySession;