SpiceBot/SpiceBot/SpiceBotCore/config/__init__.py
deathbybandaid a8afdba69a test
2022-02-09 13:33:17 -05:00

16 lines
267 B
Python

class Config():
def __init__(self, script_dir, bot):
self.script_dir = script_dir
self.bot = bot
self.internal = {}
def core_setup(self):
self.internal["paths"] = {
"script_dir": self.script_dir
}