blob: 90d2c98bbcc527e17164aa3bb3e65be6614cf9ec [file] [log] [blame]
Gabe Black90623222017-01-18 19:52:28 +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