patchloom 0.1.6

A Rust CLI for agent-grade repo operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod global;

use crate::cmd::Command;
use clap::Parser;
use global::GlobalFlags;

/// Patchloom: agent-grade repo operations.
#[derive(Debug, Parser)]
#[command(name = "patchloom", version, about)]
pub struct Cli {
    #[command(flatten)]
    pub global: GlobalFlags,

    #[command(subcommand)]
    pub command: Command,
}