excel_cli/actions/mod.rs
1mod cell;
2mod column;
3mod command;
4mod history;
5mod row;
6mod sheet;
7mod types;
8
9pub use cell::CellAction;
10pub use column::{ColumnAction, MultiColumnAction};
11pub use history::UndoHistory;
12pub use row::{MultiRowAction, RowAction};
13pub use sheet::SheetAction;
14pub use types::{ActionCommand, ActionExecutor, ActionType, Command};