Esempio n. 1
0
def load_master_config(path=default_master_file_path):
    # Get the configuration model.
    root_node = RootConfigNode()

    # Load configuration.
    root_node.load_master_config(path=path)
 
    return root_node
Esempio n. 2
0
def load_master_config(path=default_master_file_path):
    # Get the configuration model.
    root_node = RootConfigNode()

    # Load configuration.
    root_node.load_master_config(path=path)

    return root_node
Esempio n. 3
0
def get_master_config(path=default_master_file_path):
    master_config = RootConfigNode()
    master_config.load_master_config(path=path)
    return master_config
Esempio n. 4
0
def get_master_config(path=default_master_file_path):
    master_config = RootConfigNode()
    master_config.load_master_config(path=path)
    return master_config