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