DeathGarden_API_Rebirth/src/logic/setup_handlers.py

8 lines
148 B
Python

import yaml
def load_config():
with open('config//api_config.yaml', 'r') as f:
config_file = yaml.safe_load(f)
return config_file