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