| Pingping Lin | 276c1b9 | 2016-04-20 18:02:10 -0700 | [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() | ||||