blob: 6db012f8ec1cb7294ffb1a85000f68312e213c52 [file] [log] [blame]
Matteo Scandoloa4e6e9a2016-08-23 12:04:45 -07001#!/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(
Scott Baker1c1c44e2017-03-14 10:19:19 -070010 os.path.realpath(__file__)), "../../synchronizers/new_base")
Matteo Scandoloa4e6e9a2016-08-23 12:04:45 -070011sys.path.append(synchronizer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()