1 2 3 4 5 6 7 8 9 10 11
// Copyright (c) 2024-2026 Nervosys LLC // SPDX-License-Identifier: AGPL-3.0-only //! TUI (Text User Interface) module for interactive browsing of chat sessions //! //! Provides color-coded tables and interactive navigation for VS Code Copilot Chat sessions. mod app; mod events; mod ui; pub use events::run_tui;