7 lines
111 B
Python
7 lines
111 B
Python
import yaml
|
|
|
|
def load_config():
|
|
with open("config/apis.yaml", "r") as f:
|
|
return yaml.safe_load(f)
|
|
|