Threkork / Kovi

A OneBot V11 bot plugin framework developed with Rust. OneBot V11 机器人插件框架。上手及其简单。
http://kovi.threkork.com
Mozilla Public License 2.0
22 stars 4 forks source link

修改async_move宏支持无事件参数的情况 #7

Closed rust-kotlin closed 3 weeks ago

rust-kotlin commented 3 weeks ago

如在定时任务中是没有事件参数的,如

p::cron("0 0 7-22 ?", async_move!(;bot,db,times,on,skip_set;{});

而在消息处理中需要填事件参数,如

p::on_admin_msg(async_move!(event;on,times,db,bot,skip_set;{});