forked from extern/nushell
# Description This is mainly https://github.com/nushell/nushell/pull/13450 (which got reverted). Additionally: - always clear IDs on import, disallow specifying IDs when piping - added extra tests - create backup of the history # User-Facing Changes New command: `history import` # Tests + Formatting Added mostly integration tests and a few smaller unit tests.
9 lines
175 B
Rust
9 lines
175 B
Rust
mod fields;
|
|
mod history_;
|
|
mod history_import;
|
|
mod history_session;
|
|
|
|
pub use history_::History;
|
|
pub use history_import::HistoryImport;
|
|
pub use history_session::HistorySession;
|