rewrite: New Pomodoro Timer system.
This commit is contained in:
10
src/modules/pomodoro/__init__.py
Normal file
10
src/modules/pomodoro/__init__.py
Normal 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))
|
||||
Reference in New Issue
Block a user