blob: e91f27a39d391646be0dbc8d769f971b503acb0f [file] [log] [blame]
Saleil Bhat1c5593d2017-01-06 15:25:57 -08001#!/usr/bin/env python
2
Saleil Bhat1c5593d2017-01-06 15:25:57 -08003# Runs the standard XOS observer
4
5import importlib
6import os
7import sys
Pingping Lin4cc1fae2017-06-09 17:42:02 -07008
Saleil Bhat1c5593d2017-01-06 15:25:57 -08009observer_path = os.path.join(os.path.dirname(
Pingping Lin4cc1fae2017-06-09 17:42:02 -070010 os.path.realpath(__file__)), "../../synchronizers/new_base")
Saleil Bhat1c5593d2017-01-06 15:25:57 -080011sys.path.append(observer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()