1 2 3 4 5 6 7 8 9 10 11
//! Command execution and clipboard integration. //! //! This module handles executing commands and clipboard operations: //! - Shell command execution //! - Clipboard copy functionality pub mod clipboard; pub mod shell; pub use clipboard::copy_to_clipboard; pub use shell::execute_command;