From ebfd877429aa66655d20b2460d900729ff7f23b4 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 04:43:14 +0000 Subject: [PATCH] Initial upload: gitignore-gen Rust CLI tool with 100+ templates --- app/gitignore-gen/src/core/mod.rs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 app/gitignore-gen/src/core/mod.rs diff --git a/app/gitignore-gen/src/core/mod.rs b/app/gitignore-gen/src/core/mod.rs new file mode 100644 index 0000000..7404805 --- /dev/null +++ b/app/gitignore-gen/src/core/mod.rs @@ -0,0 +1,2 @@ +pub mod config; +pub mod error;