blob: 26b44dfeaebdf0c3a25fe04dc9d0e6bc3b2783f7 [file] [log] [blame]
Andrea Campanella45536f72017-02-23 15:20:06 +01001#!/usr/bin/env python
2
3# This imports and runs ../../xos-observer.py
4
5import importlib
6import os
7import sys
Andrea Campanellaf6558712017-04-04 10:55:51 +02008observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../../synchronizers/new_base")
Andrea Campanella45536f72017-02-23 15:20:06 +01009sys.path.append(observer_path)
10mod = importlib.import_module("xos-synchronizer")
11mod.main()