2023-10-29 22:48:42 +01:00

7 lines
129 B
Python

import json
def load_config() -> dict:
with open("config.json", "r") as config_file:
return json.load(config_file)