Andrea Campanella | edfdbca | 2017-02-01 17:33:47 -0800 | [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() |