From 2fc806954ce55c88857dab2b37f5bdd106e60339 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:43:40 +0000 Subject: [PATCH] Add shellgen UI and safety modules --- app/shellgen/ui/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/shellgen/ui/__init__.py diff --git a/app/shellgen/ui/__init__.py b/app/shellgen/ui/__init__.py new file mode 100644 index 0000000..900f985 --- /dev/null +++ b/app/shellgen/ui/__init__.py @@ -0,0 +1,6 @@ +"""UI module for console output and interaction.""" + +from .console import ConsoleUI +from .argparse import create_parser + +__all__ = ["ConsoleUI", "create_parser"]