Files
quickdraw_bot/quickdraw_bot/utils/utils.py
2026-06-16 21:26:26 +08:00

8 lines
139 B
Python

# utils.py
import yaml
def load_config(config_path: str) -> dict:
with open(config_path, 'r') as f:
return yaml.safe_load(f)