blob: b37ac34c6f753f199a9f471968c9520b2b9cc8d9 [file] [log] [blame]
#!/usr/bin/env python
# Runs the standard XOS synchronizer
import importlib
import os
import sys
synchronizer_path = os.path.join(os.path.dirname(
os.path.realpath(__file__)), "../../synchronizers/new_base")
sys.path.append(synchronizer_path)
mod = importlib.import_module("xos-synchronizer")
mod.main()