simit 0.17.7

Semver-aware git commit helper for Rust projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use clap::CommandFactory;

use crate::cli::{Cli, ManCommand};

pub fn run(_command: ManCommand) -> Result<()> {
    let command = Cli::command();
    let man = clap_mangen::Man::new(command);
    man.render(&mut std::io::stdout())?;
    Ok(())
}