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