blob: e91f27a39d391646be0dbc8d769f971b503acb0f [file] [log] [blame]
#!/usr/bin/env python
# Runs the standard XOS observer
import importlib
import os
import sys
observer_path = os.path.join(os.path.dirname(
os.path.realpath(__file__)), "../../synchronizers/new_base")
sys.path.append(observer_path)
mod = importlib.import_module("xos-synchronizer")
mod.main()