blob: 6db012f8ec1cb7294ffb1a85000f68312e213c52 [file] [log] [blame]
Yunpeng Zhang0048cf42017-08-15 23:01:28 -04001#!/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/new_base")
11sys.path.append(synchronizer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()