8 lines
204 B
Python
8 lines
204 B
Python
#!/data/vconnect-api/venv/bin/python3
|
|
import sys
|
|
from rsa.cli import encrypt
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(encrypt())
|