Restructure compliance tools

This commit is contained in:
2026-03-27 15:22:07 +03:00
Unverified
parent f73c92c77c
commit 30ab4d9190
16 changed files with 14 additions and 11 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/env python3
"""
FromChat compliance decryption tool entrypoint.
Run:
python scripts/compliance/decryption/main.py <command> ...
"""
from __future__ import annotations
import os
import sys
def main() -> None:
root_dir = os.path.dirname(os.path.abspath(__file__))
if root_dir not in sys.path:
sys.path.insert(0, root_dir)
from cli import main as cli_main
cli_main()
if __name__ == "__main__":
main()