blob: 90d2c98bbcc527e17164aa3bb3e65be6614cf9ec [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/base")
sys.path.append(synchronizer_path)
mod = importlib.import_module("xos-synchronizer")
mod.main()