mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-01-27 01:39:03 +01:00
12 lines
229 B
Python
Executable File
12 lines
229 B
Python
Executable File
#!/usr/local/CyberCP/bin/python2
|
|
|
|
# -*- 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())
|