Initial commit

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
dinlo
2026-05-31 18:46:06 +08:00
commit 207d2fbbee
13 changed files with 1374 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"""
CryptZ Ultimate v5 — AES-256-GCM Professional Archiver
Main entry point: GUI or CLI mode.
"""
import sys
import os
def main():
if len(sys.argv) > 1:
from cli import cli_main
cli_main()
else:
from ui import CryptZApp
app = CryptZApp()
app.mainloop()
if __name__ == "__main__":
# Ensure we can import sibling modules
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
main()