atac 0.17.0

Arguably a Terminal API Client. Feature-full, free, open-source, offline and account-less.
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

#[derive(clap::Args, Debug, Clone)]
pub struct ManCommand {
    /// The path of the directory where to generate the file
    /// On most linux distros it's /usr/share/man/man1/
    #[clap(value_hint = clap::ValueHint::FilePath)]
    pub output_directory: Option<PathBuf>,
}