1//! This module defines the actions that can be performed in the UI and their dispatching logic. 2mod commands; 3mod context; 4mod dispatch; 5mod execute; 6mod resolver; 7 8pub use dispatch::handle_ui_action;