blob: 95f4081d48afeacbf3cde549d01a021c1a832ba9 [file] [log] [blame]
#!/usr/bin/env python
# This imports and runs ../../xos-observer.py
# Runs the standard XOS observer
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()