rewrite: New Pomodoro Timer system.

This commit is contained in:
2023-05-19 09:45:06 +03:00
parent 8d5840c696
commit 4aa2587c45
29 changed files with 2860 additions and 12 deletions

View File

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