1//! Input handling module for TUI
2//!
3//! This module provides keyboard, mouse, and clipboard input handling.
45mod clipboard;
6mod editor;
7mod handler;
89pub use clipboard::ClipboardHandler;
10pub use editor::InputEditor;
11pub use handler::{InputAction, InputHandler};