mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2024-12-22 03:29:55 +00:00
11 lines
220 B
Python
Executable File
11 lines
220 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from os.path import realpath, dirname, join
|
|
from sys import argv, exit, path
|
|
|
|
path.insert(0, join(dirname(realpath(argv[0])), '..', 'src'))
|
|
|
|
import Ophis.Main
|
|
|
|
exit(Ophis.Main.run_ophis(argv[1:]))
|