blob: 95f4081d48afeacbf3cde549d01a021c1a832ba9 [file] [log] [blame]
Pingping Lind07e26c2016-09-06 23:06:01 +00001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4# Runs the standard XOS observer
5
6import importlib
7import os
8import sys
9observer_path = os.path.join(os.path.dirname(
10 os.path.realpath(__file__)), "../../synchronizers/base")
11sys.path.append(observer_path)
12mod = importlib.import_module("xos-synchronizer")
13mod.main()