1.4 Добавлен модуль погоды

This commit is contained in:
Verum
2025-02-28 13:30:19 +07:00
parent f01edc2d0d
commit ee8465b61e
5 changed files with 62 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
# BotCode/routers/commands/user_cmd/start_time_cmd.py
from aiogram import types
from BotLibrary import CommandHandler
from BotCode.utils import get_weather
__all__ = ("weather_cmd",)
weather_cmd = CommandHandler(
name="weather",
description="Погода",
keywords=["weather", "gjujlf", "цуферук", "погода"],
callbackdata=["keywords"],
media="command",
func=[get_weather],
)