repotool/src/main.rs

20 lines
327 B
Rust
Raw Normal View History

2024-10-16 14:26:43 -07:00
use std::path::PathBuf;
use clap::Parser;
/// Repotool is a tool to manage multiple code repositories
#[derive(Parser, Debug)]
#[command(version, about)]
struct Args {
/// Working directory
#[arg(short, long)]
directory: PathBuf,
}
2024-10-16 14:09:55 -07:00
fn main() {
2024-10-16 14:26:43 -07:00
let args = Args::parse();
println!("ARGS: {:?}", args);
2024-10-16 14:09:55 -07:00
}