dapctl 1.0.0

TUI/CLI sync tool for HiFi Digital Audio Players
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Args as ClapArgs;

#[derive(ClapArgs, Debug)]
pub struct Args {
    /// Follow the active run instead of printing a snapshot.
    #[arg(short, long)]
    pub follow: bool,
    /// Filter by run id (ulid).
    #[arg(long)]
    pub run: Option<String>,
}

pub fn run(_args: Args) -> anyhow::Result<()> {
    anyhow::bail!("log: not yet implemented (v0.1 milestone)")
}