mochi-cli 0.0.4

A CLI tool for managing mochi-based modules.
1
2
3
4
5
6
7
8
9
10
11
include!("src/lib.rs");

use std::path::Path;

fn main() -> std::io::Result<()> {
    let dest_path = Path::new("./").join("CommandLineHelp.md");

    std::fs::write(dest_path, clap_markdown::help_markdown::<Cli>())?;

    Ok(())
}