[V3 Wolfram] Add initial commit

This commit is contained in:
aikaterna
2018-06-30 15:13:02 -07:00
committed by GitHub
parent d70a73c75c
commit 7e594de4b3

7
wolfram/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from discord.ext import commands
from .wolfram import Wolfram
def setup(bot: commands.Bot):
n = Wolfram(bot)
bot.add_cog(n)