mirror of
https://github.com/avitoras/telegram-tui.git
synced 2025-07-27 19:26:10 +00:00
9 lines
239 B
Python
Executable File
9 lines
239 B
Python
Executable File
#!/Users/arbung/work/talc/venv/bin/python3.12
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from rsa.cli import encrypt
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(encrypt())
|