Crates.io | kovi-plugin-expand-napcat |
lib.rs | kovi-plugin-expand-napcat |
version | 0.1.0 |
source | src |
created_at | 2024-10-25 13:52:08.206818 |
updated_at | 2024-10-30 08:43:21.015561 |
description | Kovi 的 Napcat Api拓展。 |
homepage | |
repository | https://github.com/Threkork/kovi-plugin/ |
max_upload_size | |
id | 1422568 |
size | 39,108 |
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);
}