pitchfork-cli 2.6.0

Daemons with DX
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::Result;

/// Launch the interactive TUI dashboard
#[derive(Debug, clap::Args)]
pub struct Tui {}

impl Tui {
    pub async fn run(&self) -> Result<()> {
        crate::tui::run().await
    }
}