mirror of
https://github.com/bikini/patchwork
synced 2026-06-27 08:08:41 +00:00
15 lines
317 B
Python
15 lines
317 B
Python
from .core import Obfuscator, obfuscate, obfuscate_file
|
|
from .audit import analyze_source, build_manifest, build_stats, verify_manifest
|
|
|
|
__version__ = '0.4.0'
|
|
|
|
__all__ = [
|
|
'Obfuscator',
|
|
'analyze_source',
|
|
'build_manifest',
|
|
'build_stats',
|
|
'obfuscate',
|
|
'obfuscate_file',
|
|
'verify_manifest',
|
|
]
|