feat(skins): Implement custom skin backend.

This commit is contained in:
2023-10-27 15:42:26 +03:00
parent 116bb869db
commit b47744e219
21 changed files with 797 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import logging
from babel.translator import LocalBabel
babel = LocalBabel('customskins')
logger = logging.getLogger(__name__)
async def setup(bot):
from .cog import CustomSkinCog
await bot.add_cog(CustomSkinCog(bot))