Scott Baker | 6ad0360 | 2017-06-01 17:34:31 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | # This imports and runs ../../xos-observer.py |
| 4 | |
| 5 | import importlib |
| 6 | import os |
| 7 | import sys |
Matteo Scandolo | ad2726e | 2017-06-06 10:35:33 -0700 | [diff] [blame] | 8 | from xosconfig import Config |
| 9 | |
| 10 | config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/volt_config.yaml') |
| 11 | Config.init(config_file, 'synchronizer-config-schema.yaml') |
| 12 | |
Scott Baker | 6ad0360 | 2017-06-01 17:34:31 -0700 | [diff] [blame] | 13 | observer_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),"../../synchronizers/new_base") |
| 14 | sys.path.append(observer_path) |
| 15 | mod = importlib.import_module("xos-synchronizer") |
| 16 | mod.main() |