migrate vEE to master

Change-Id: Ie451914a395ad8a8df20fb8df1054d55ce0eb263
diff --git a/xos/synchronizer/vee-synchronizer.py b/xos/synchronizer/vee-synchronizer.py
index 34ac99b..6e813df 100644
--- a/xos/synchronizer/vee-synchronizer.py
+++ b/xos/synchronizer/vee-synchronizer.py
@@ -16,11 +16,14 @@
 
 #!/usr/bin/env python
 
-# This imports and runs ../../xos-observer.py
-
 import importlib
 import os
 import sys
+from xosconfig import Config
+
+config_file = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/vee_config.yaml')
+Config.init(config_file, 'synchronizer-config-schema.yaml')
+
 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")