bounds-cli 0.5.1

Add a .gitignore and LICENSE to a repository
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;
use std::path::PathBuf;

#[derive(Debug, Parser)]
#[command(
    name = "bounds",
    version,
    about = "Add a .gitignore and LICENSE to a repository"
)]
pub struct Cli {
    /// Repository to configure
    pub path: Option<PathBuf>,
}