Files
Tests/utils/yaml_loader.py
T

7 lines
102 B
Python
Raw Normal View History

2026-05-06 22:16:58 +03:30
import yaml
def load_apis():
with open("apis.yaml", "r") as f:
return yaml.safe_load(f)