File size: 188 Bytes
b368e21
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""
Created By: ishwor subedi
Date: 2024-08-02
"""
import yaml


def load_config(file_path):
    with open(file_path, 'r') as file:
        config = yaml.safe_load(file)
    return config