metis_docs_cli/commands/
tui.rs

1use anyhow::Result;
2use clap::Args;
3
4#[derive(Args)]
5pub struct TuiCommand {
6    // No additional arguments needed for now
7}
8
9impl TuiCommand {
10    pub async fn execute(&self) -> Result<()> {
11        // Call the TUI main function directly
12        metis_docs_tui::run().await
13    }
14}