mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-07-13 07:11:17 -05:00
8 lines
148 B
Python
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
|