feat: Implement Sponsors.

This commit is contained in:
2023-10-20 19:52:22 +03:00
parent 8855d2efb8
commit ad455e5ac3
12 changed files with 380 additions and 14 deletions

View File

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