limit_cli/tui_bridge.rs
1//! Legacy TUI module - Re-exports from modular structure
2//!
3//! This module exists for backwards compatibility.
4//! New code should use `limit_cli::tui::app::TuiApp` and `limit_cli::tui::bridge::TuiBridge` directly.
5//!
6//! # Deprecation
7//!
8//! This module is deprecated and will be removed in a future version.
9//! Use the `tui` module instead.
10
11// Re-export from the modular structure for backwards compatibility
12#[deprecated(
13 since = "0.0.25",
14 note = "Use `limit_cli::tui::app::TuiApp` or `limit_cli::tui::bridge::TuiBridge` instead"
15)]
16pub use crate::tui::app::TuiApp;
17#[deprecated(
18 since = "0.0.25",
19 note = "Use `limit_cli::tui::bridge::TuiBridge` instead"
20)]
21pub use crate::tui::bridge::TuiBridge;