//! Paste event forwarding for the TUI.
//!
//! Wraps the terminal paste bracket event and delegates to
//! [`crate::tui::app::input::handle_paste`].
//!
//! # Examples
//!
//! ```ignore
//! handle_paste_event(&mut app, "some text").await;
//! ```
use cratehandle_paste;
use crateApp;
/// Forward a paste event from the terminal to input handling.
///
/// Delegates directly to [`crate::tui::app::input::handle_paste`].
///
/// # Examples
///
/// ```ignore
/// handle_paste_event(&mut app, "pasted text").await;
/// ```
pub async