Upload command line

This commit is contained in:
2021-09-06 13:21:38 +08:00
parent adacf5a883
commit c96d31b30a
6 changed files with 66 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
__version__ = "1.0.0"
from game_backuper.main import main
@@ -6,4 +7,6 @@ def start():
try:
sys.exit(main())
except Exception:
from traceback import print_exc
print_exc()
sys.exit(-1)