rewrite: Restructure to include GUI.

This commit is contained in:
2022-12-23 06:44:32 +02:00
parent 2b93354248
commit f328324747
224 changed files with 8 additions and 0 deletions

View File

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