blob: df697ec5c3577f31ac4709a69602985b8b1b993e [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
9#observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../synchronizers/base")
10sys.path.append("/opt/xos/synchronizers/base")
11print sys.path
12mod = importlib.import_module("xos-synchronizer")
13mod.main()