Skip to main content

limit_cli/tui/input/
mod.rs

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