feat: 重启时间显示
This commit is contained in:
15
liteyuki/plugins/liteyuki_weather/qweather.py
Normal file
15
liteyuki/plugins/liteyuki_weather/qweather.py
Normal file
@ -0,0 +1,15 @@
|
||||
from nonebot import require
|
||||
|
||||
require("nonebot_plugin_alconna")
|
||||
from nonebot_plugin_alconna import on_alconna, Alconna, Subcommand, Args, MultiVar, Arparma
|
||||
|
||||
|
||||
@on_alconna(
|
||||
aliases={"天气"},
|
||||
command=Alconna(
|
||||
"weather",
|
||||
Args["keywords", MultiVar(str)],
|
||||
),
|
||||
).handle()
|
||||
async def _(result: Arparma):
|
||||
"""await alconna.send("weather", city)"""
|
Reference in New Issue
Block a user