Creating coordinator logics, reworking the main function

This commit is contained in:
Zoe Roux
2020-11-08 19:16:09 +01:00
parent 25585be872
commit 3e2c2846d0
11 changed files with 89 additions and 19 deletions
-1
View File
@@ -1 +0,0 @@
../autopipe/__main__.py
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env python3
try:
import autopipe
except ModuleNotFoundError:
import sys
import os
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), "..")))
import autopipe
if __name__ == "__main__":
exit(autopipe.main())