5 releases

0.1.0 Oct 30, 2024
0.0.5 Oct 26, 2024
0.0.4 Oct 26, 2024
0.0.2 Oct 25, 2024
0.0.1 Oct 25, 2024

#661 in Network programming

Download history 217/week @ 2024-10-21 135/week @ 2024-10-28 5/week @ 2024-11-04

357 downloads per month

MPL-2.0 license

40KB
1K SLoC

kovi-plugin-expand-napcat

Kovi 的 Napcta Api 拓展插件。

Napcta Api文档不齐全,如果出错请及时提交issue

使用 cargo kovi add expand-napcat -p <PLUGIN_NAME> or cargo add kovi-plugin-expand-napcat -p <PLUGIN_NAME> 添加此拓展。

懒得写了,直接看 napcat 的文档就行了: napcat

合并转发例子:

use kovi::{Message, PluginBuilder as p};
// 两个 trait,第一个用于 RuntimeBot,第二个用于 Vec
use kovi_plugin_expand_napcat::{NapcatApi, NapcatVec};

#[kovi::plugin]
async fn main() {
    let bot = p::get_runtime_bot();

    let mut nodes = Vec::new();

    nodes.push_forward_node("10000");

    bot.send_private_msg(bot.main_admin, nodes);
}

Dependencies

~14–28MB
~391K SLoC