tuxbot-bot/venv/bin/tcp-latency

11 lines
297 B
Text
Raw Normal View History

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