a gazillion things to implement cosmos db healthcheck

This commit is contained in:
Pablo Martin 2024-08-09 12:41:23 +02:00
parent 7af3b12c81
commit 91c79357f8
11 changed files with 421 additions and 15 deletions

View file

@ -0,0 +1,8 @@
import pathlib
import yaml
def read_yaml(path: pathlib.Path) -> dict:
with open(path) as f:
return yaml.safe_load(f)