Initial upload: gitignore-gen Rust CLI tool with 100+ templates
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
CI / lint (push) Has been cancelled

This commit is contained in:
2026-02-04 04:43:12 +00:00
parent 66c0f50e87
commit 486407e28d

View File

@@ -0,0 +1,20 @@
mod cli;
mod core;
mod templates;
mod tui;
use anyhow::Result;
use clap::Parser;
#[derive(Parser, Version)]
#[command(name = "gitignore-gen")]
#[command(author, version, about, long_about = None)]
struct Args {
#[command(subcommand)]
command: cli::Commands,
}
fn main() -> Result<()> {
let args = Args::parse();
cli::run(args.command)
}