blob: 64d0b08c9639600c91c9be5a0ec6f2c3afd8aa6a [file] [log] [blame]
#!/usr/bin/env python
# This imports and runs ../../xos-observer.py
import importlib
import os
import sys
observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../synchronizers/base")
sys.path.append(observer_path)
mod = importlib.import_module("xos-synchronizer")
mod.main()