From 71d334cb2576fa07aa29449c22f34be3d3634f48 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 12:43:41 +0000 Subject: [PATCH] Add shellgen UI and safety modules --- app/shellgen/safety/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/shellgen/safety/__init__.py diff --git a/app/shellgen/safety/__init__.py b/app/shellgen/safety/__init__.py new file mode 100644 index 0000000..9efe82e --- /dev/null +++ b/app/shellgen/safety/__init__.py @@ -0,0 +1,5 @@ +"""Safety module for command validation.""" + +from .checker import SafetyChecker + +__all__ = ["SafetyChecker"]