From 2ef0e059a09c12216242531403f7a4cac23e8163 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 15:54:20 +0000 Subject: [PATCH] Add CLI commands and interactive mode --- gitignore_generator/cli/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 gitignore_generator/cli/__init__.py diff --git a/gitignore_generator/cli/__init__.py b/gitignore_generator/cli/__init__.py new file mode 100644 index 0000000..deec73a --- /dev/null +++ b/gitignore_generator/cli/__init__.py @@ -0,0 +1,5 @@ +"""CLI package for gitignore-generator.""" + +from gitignore_generator.cli.commands import main + +__all__ = ["main"]