matchy/config.py

10 lines
155 B
Python
Raw Normal View History

"""Very simple config loading library"""
import json
CONFIG = "config.json"
def load() -> dict:
with open(CONFIG) as f:
return json.load(f)