Add advanced workflow controls

This commit is contained in:
ashton
2026-06-04 04:26:04 -05:00
parent 432df66946
commit e3702d4ae9
9 changed files with 746 additions and 97 deletions
+13 -3
View File
@@ -1,4 +1,14 @@
from .core import Obfuscator, obfuscate, obfuscate_file
from .audit import analyze_source, build_manifest
__version__ = '0.2.0'
__all__ = ['Obfuscator', 'analyze_source', 'build_manifest', 'obfuscate', 'obfuscate_file']
from .audit import analyze_source, build_manifest, build_stats, verify_manifest
__version__ = '0.3.0'
__all__ = [
'Obfuscator',
'analyze_source',
'build_manifest',
'build_stats',
'obfuscate',
'obfuscate_file',
'verify_manifest',
]