e5b884f
1
2
3
4
5
6
7
8
import yaml import os def load_config(config_path: str = "app/config/config.yaml") -> dict: with open(config_path, "r") as file: config = yaml.safe_load(file) # print(config) return config