Files
2025-04-13 06:50:23 +07:00

16 lines
447 B
Python

# BotCode/routers/commands/user_cmd/start_time_cmd.py
# Команда на выдачу погоды определенного города
from BotLibrary import CommandHandler
from BotCode.utils import get_weather
__all__ = ("weather_cmd",)
weather_cmd = CommandHandler(
name="weather",
description="Погода",
keywords=["weather", "gjujlf", "цуферук", "погода"],
media="command",
func=[get_weather],
)