mod commands;
mod common;
mod help;
mod loop_cmd;
mod resources;
pub(crate) use commands::Commands;
pub(crate) use common::*;
pub(crate) use loop_cmd::LoopCommand;
pub(crate) use resources::*;
use clap::Parser;
use std::path::PathBuf;
#[derive(Parser)]
#[command(name = "govctl")]
#[command(about = "Project governance CLI for RFC, ADR, and Work Item management")]
#[command(version)]
pub(crate) struct Cli {
#[arg(short = 'C', long, global = true)]
pub(crate) config: Option<PathBuf>,
#[arg(long, global = true)]
pub(crate) dry_run: bool,
#[command(subcommand)]
pub(crate) command: Commands,
}