mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-07-16 00:41:03 -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
|