sql-cli 1.68.0

SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation
Documentation
1
2
3
4
5
6
7
8
// Behavioral traits for TUI functionality
// These traits extract specific behaviors from the main TUI to reduce coupling

pub mod export_behavior;
pub mod status_behavior;

pub use export_behavior::{ExportBehavior, ExportFormat};
pub use status_behavior::StatusBehavior;