Scott Baker | c3ce3e7 | 2016-06-20 17:35:19 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
2 | |||||
3 | # This imports and runs ../../xos-observer.py | ||||
4 | |||||
5 | import importlib | ||||
6 | import os | ||||
7 | import sys | ||||
8 | observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../../synchronizers/base") | ||||
9 | sys.path.append(observer_path) | ||||
10 | mod = importlib.import_module("xos-synchronizer") | ||||
11 | mod.main() |