Files
PluralKit/src/pluralkit/bot/help.py
T
2019-03-30 21:27:57 +01:00

7 lines
135 B
Python

import json
import os.path
helpfile = None
with open(os.path.dirname(__file__) + "/help.json", "r") as f:
helpfile = json.load(f)