8 lines
268 B
Python
Executable file
8 lines
268 B
Python
Executable file
#!/home/heyeradmin/repositories/ISO-27001-Risk-Management/.venv/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from josepy.jws import CLI
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(CLI.run())
|