Initial commit: UMB Telegram Bot

This commit is contained in:
Галингер Р.С.
2026-07-07 18:30:17 +07:00
commit 76e5701eba
31 changed files with 2524 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from aiogram import Router
from aiogram.types import Message
from aiogram.filters import Command
from bot.utils.weather import get_weather
router = Router()
@router.message(Command("weather"))
async def cmd_weather(message: Message):
await get_weather(message)