flo-token-explorer-historic/py3/bin/hypercorn
2021-12-09 18:16:18 +00:00

12 lines
265 B
Python
Executable File

#!/home/production/deployed/flo-token-explorer/py3/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from hypercorn.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())