blob: 93dcb7201f2c6acb580e0f30c5d094fff64beee9 [file] [log] [blame]
Murat Parlakisikb224cc92017-02-16 16:27:12 -08001#!/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()