blob: 84bec4f0e892e0cdd2774037da80dd066e620b95 [file] [log] [blame]
Scott Baker25467ff2016-08-04 09:50:22 -07001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4
5import importlib
6import os
7import sys
8observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../../synchronizers/base")
9sys.path.append(observer_path)
10mod = importlib.import_module("xos-synchronizer")
11mod.main()