blob: e91f27a39d391646be0dbc8d769f971b503acb0f [file] [log] [blame]
Yunpeng Zhang9b335072017-08-02 20:56:32 -04001#!/usr/bin/env python
2
3# Runs the standard XOS observer
4
5import importlib
6import os
7import sys
8
9observer_path = os.path.join(os.path.dirname(
10 os.path.realpath(__file__)), "../../synchronizers/new_base")
11sys.path.append(observer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()