sql_cli/ui/behaviors/
mod.rs

1// Behavioral traits for TUI functionality
2// These traits extract specific behaviors from the main TUI to reduce coupling
3
4pub mod export_behavior;
5pub mod status_behavior;
6
7pub use export_behavior::{ExportBehavior, ExportFormat};
8pub use status_behavior::StatusBehavior;