JishoBot/utils/config.py

11 lines
198 B
Python
Raw Normal View History

2020-08-11 08:26:05 +00:00
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]