blob: 26b44dfeaebdf0c3a25fe04dc9d0e6bc3b2783f7 [file] [log] [blame]
Scott Baker6ad03602017-06-01 17:34:31 -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/new_base")
9sys.path.append(observer_path)
10mod = importlib.import_module("xos-synchronizer")
11mod.main()