fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 20:51:59 +05:00
parent 91364014c1
commit c676a388bd
8 changed files with 2 additions and 2 deletions

7
pomodoro_bot/main.py Normal file
View File

@@ -0,0 +1,7 @@
import asyncio
from pomodoro_bot.bot import run_bot
from .redis_client import init_redis
if __name__ == '__main__':
asyncio.run(init_redis())
run_bot()