blob: 26b44dfeaebdf0c3a25fe04dc9d0e6bc3b2783f7 [file] [log] [blame]
Scott Baker7a327592016-06-20 17:34:06 -07001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4
5import importlib
6import os
7import sys
Scott Baker91ee5e42017-03-14 10:33:52 -07008observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../../synchronizers/new_base")
Scott Baker7a327592016-06-20 17:34:06 -07009sys.path.append(observer_path)
10mod = importlib.import_module("xos-synchronizer")
11mod.main()