use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(name = "bforge")]
#[command(about = "Decentralized code injection tool", long_about = None)]
pub struct Cli {
#[command(subcommand)]
pub command: Commands,
}
#[derive(Subcommand)]
pub enum Commands {
Init,
Add {
#[arg(index = 1)]
repo: String,
#[arg(index = 2)]
item: String,
#[arg(short, long)]
force: bool,
},
}