mirror of
https://github.com/zoriya/Autopipe.git
synced 2026-05-28 04:31:12 +00:00
11 lines
248 B
Python
Executable File
11 lines
248 B
Python
Executable File
#!/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()) |