Implements filebased config, config override through env vars, use of osm
[osm/MON.git] / osm_mon / collector / infra_collectors / base_vim.py
index 0a075a1..2f5954a 100644 (file)
 # For those usages not covered by the Apache License, Version 2.0 please
 # contact: bdiaz@whitestack.com or glavado@whitestack.com
 ##
+from osm_mon.core.config import Config
+
 from osm_mon.collector.infra_collectors.base import BaseInfraCollector
 
 
 class BaseVimInfraCollector(BaseInfraCollector):
-    def __init__(self, vim_account_id: str):
+    def __init__(self, config: Config, vim_account_id: str):
         pass
 
     def is_vim_ok(self) -> bool: