mirror of
https://github.com/zoriya/Autopipe.git
synced 2026-06-04 07:25:49 +00:00
Creating coordinator logics, reworking the main function
This commit is contained in:
@@ -1 +0,0 @@
|
||||
../autopipe/__main__.py
|
||||
Executable
+11
@@ -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())
|
||||
Reference in New Issue
Block a user