twin-cli 0.2.0

Git worktree wrapper with side effects (symlinks and hooks)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]
/// TUI (Terminal User Interface) モジュール
///
/// このモジュールの役割:
/// - ratatuiを使った対話的なターミナルUI
/// - 環境の一覧表示と選択
/// - キーボード操作での環境管理
/// - リアルタイムステータス表示
use anyhow::Result;

pub async fn run_tui() -> Result<()> {
    // TODO: TUI実装
    println!("TUI mode is not implemented yet");
    Ok(())
}