Saleil Bhat | 1c5593d | 2017-01-06 15:25:57 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
2 | |||||
3 | # This imports and runs ../../xos-observer.py | ||||
4 | # Runs the standard XOS observer | ||||
5 | |||||
6 | import importlib | ||||
7 | import os | ||||
8 | import sys | ||||
9 | observer_path = os.path.join(os.path.dirname( | ||||
10 | os.path.realpath(__file__)), "../../synchronizers/base") | ||||
11 | sys.path.append(observer_path) | ||||
12 | mod = importlib.import_module("xos-synchronizer") | ||||
13 | mod.main() |