twin_cli/tui.rs
1#![allow(dead_code)]
2/// TUI (Terminal User Interface) モジュール
3///
4/// このモジュールの役割:
5/// - ratatuiを使った対話的なターミナルUI
6/// - 環境の一覧表示と選択
7/// - キーボード操作での環境管理
8/// - リアルタイムステータス表示
9use anyhow::Result;
10
11pub async fn run_tui() -> Result<()> {
12 // TODO: TUI実装
13 println!("TUI mode is not implemented yet");
14 Ok(())
15}