mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-08-05 16:48:53 +00:00
9 lines
243 B
Text
9 lines
243 B
Text
![]() |
#!/workspaces/Kokoro-FastAPI/pine_env/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import re
|
||
|
import sys
|
||
|
from websockets.cli import main
|
||
|
if __name__ == '__main__':
|
||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||
|
sys.exit(main())
|