From 2d1c8fce90bcd2aa618286368b0e3b39d87ac8b9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 04:43:18 +0000 Subject: [PATCH] Initial upload: gitignore-gen Rust CLI tool with 100+ templates --- app/gitignore-gen/src/templates/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/gitignore-gen/src/templates/mod.rs diff --git a/app/gitignore-gen/src/templates/mod.rs b/app/gitignore-gen/src/templates/mod.rs new file mode 100644 index 0000000..22c49e7 --- /dev/null +++ b/app/gitignore-gen/src/templates/mod.rs @@ -0,0 +1,5 @@ +mod loader; +pub mod models; + +pub use loader::TemplateLoader; +pub use models::{Category, Template, TemplateCollection, TemplateSet};