rewrite: Begin shop module.

This commit is contained in:
2022-12-05 04:29:57 +02:00
parent 72fd3c17f0
commit 4ef1b58007
9 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from babel import LocalBabel
babel = LocalBabel('shop')
async def setup(bot):
from .cog import Shopping
await bot.add_cog(Shopping(bot))