7 lines
191 B
Python
Executable File
7 lines
191 B
Python
Executable File
#!/opt/proxmox-provisioner-enhanced/.venv/bin/python3
|
|
import sys
|
|
from flask.cli import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = sys.argv[0].removesuffix('.exe')
|
|
sys.exit(main())
|