Matteo Scandolo | a4e6e9a | 2016-08-23 12:04:45 -0700 | [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() |