Skip to main content

chasm/tui/
mod.rs

1// Copyright (c) 2024-2026 Nervosys LLC
2// SPDX-License-Identifier: AGPL-3.0-only
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;