mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2026-08-15 13:04:30 +00:00
8 lines
211 B
Python
8 lines
211 B
Python
#!/usr/bin/python3.12
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from flask.cli import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|