rvy 0.1.2

A modular Rust CLI framework for generating services, tools, and project scaffolds.
1
2
3
4
5
6
#[derive(Debug, Clone)]
pub struct Context {
    pub dry_run: bool,
    pub force: bool,
    pub is_new_all: bool,  // Flag to indicate if called from new-all command
}