diff --git a/weather/__init__.py b/weather/__init__.py index ea2d8fc..8b3011f 100644 --- a/weather/__init__.py +++ b/weather/__init__.py @@ -3,6 +3,11 @@ from bot import hitomi from weather import lib +@hitomi.command() +async def forecast(query: str): + await hitomi.say(lib.get_forecast_for_query([query])) + + @hitomi.command() async def weather(query: str): await hitomi.say(lib.get_conditions_for_query([query]))