12 lines
440 B
Python
12 lines
440 B
Python
from config_app.config_util.config.fileprovider import FileConfigProvider
|
|
from config_app.config_util.config.testprovider import TestConfigProvider
|
|
|
|
|
|
def get_config_provider(config_volume, yaml_filename, py_filename, testing=False):
|
|
""" Loads and returns the config provider for the current environment. """
|
|
if testing:
|
|
return TestConfigProvider()
|
|
|
|
return FileConfigProvider(config_volume, yaml_filename, py_filename)
|
|
|
|
|