JishoBot/utils/config.py
2020-08-11 10:26:05 +02:00

11 lines
198 B
Python

import json
config = None
with open("config.json") as file:
config = json.load(file)
if config is None:
raise "Failed to load config file"
def get(key: str) -> str:
return config[key]