tuxbot-bot/venv/bin/tcp-latency

11 lines
297 B
Plaintext
Raw Normal View History

2020-01-14 23:08:53 +00:00
#!/home/romain/jetbrains/IDEs/PycharmProjects/gnousEU/discord/tuxbot-bot/venv/bin/python
2019-12-16 17:12:10 +00:00
# -*- coding: utf-8 -*-
import re
import sys
2020-01-14 23:08:53 +00:00
2019-12-16 17:12:10 +00:00
from tcp_latency.tcp_latency import _main
2020-01-14 23:08:53 +00:00
2019-12-16 17:12:10 +00:00
if __name__ == '__main__':
2020-01-14 23:08:53 +00:00
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
2019-12-16 17:12:10 +00:00
sys.exit(_main())