Gabe Black | 4c040b7 | 2016-11-17 22:35:04 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
2 | |||||
3 | # Runs the standard XOS synchronizer | ||||
4 | |||||
5 | import importlib | ||||
6 | import os | ||||
7 | import sys | ||||
8 | |||||
9 | synchronizer_path = os.path.join(os.path.dirname( | ||||
10 | os.path.realpath(__file__)), "../../synchronizers/base") | ||||
11 | sys.path.append(synchronizer_path) | ||||
12 | mod = importlib.import_module("xos-synchronizer") | ||||
13 | mod.main() | ||||
14 |