Add config module

This commit is contained in:
2026-01-29 21:23:34 +00:00
parent e31442bf6d
commit 6ca7e8c2b9

5
src/config/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""Configuration module for Shell Safe Validator."""
from .loader import ConfigLoader, load_rules
__all__ = ["ConfigLoader", "load_rules"]