first commit

This commit is contained in:
2025-10-24 03:13:40 +03:00
commit cd3c5626db
8 changed files with 765 additions and 0 deletions

11
bot/__main__.py Normal file
View File

@@ -0,0 +1,11 @@
import asyncio
from .bot import bot, dp
async def main():
await dp.start_polling(bot)
if __name__ == "__main__":
asyncio.run(main())