Files
Tests/utils/yaml_loader.py
T
2026-05-06 22:41:53 +03:30

7 lines
111 B
Python

import yaml
def load_config():
with open("config/apis.yaml", "r") as f:
return yaml.safe_load(f)