Files
Logic/Tests/utils/yaml_loader.py
T
2026-05-06 22:14:38 +03:30

7 lines
102 B
Python

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