7 lines
102 B
Python
7 lines
102 B
Python
|
|
import yaml
|
||
|
|
|
||
|
|
def load_apis():
|
||
|
|
with open("apis.yaml", "r") as f:
|
||
|
|
return yaml.safe_load(f)
|
||
|
|
|