blob: 64d0b08c9639600c91c9be5a0ec6f2c3afd8aa6a [file] [log] [blame]
Rizwan Haider30b33792016-08-18 02:11:18 -04001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4
5import importlib
6import os
7import sys
8
9observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../synchronizers/base")
10sys.path.append(observer_path)
11mod = importlib.import_module("xos-synchronizer")
12mod.main()