This commit is contained in:
darthsandmann
2022-11-29 19:10:30 +01:00
parent 9b39f1af50
commit c74c45998c
57 changed files with 3163 additions and 6 deletions

8
deps/bin/eq3cli vendored Executable file
View File

@ -0,0 +1,8 @@
#!/usr/local/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from eq3bt.eq3cli import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())