feat: plugin

This commit is contained in:
手瓜一十雪
2024-12-11 17:07:21 +08:00
parent 1cd7d0577f
commit a39b0a4a78
5 changed files with 77 additions and 7 deletions

10
src/core/plugin/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import { OB11Message } from "@/onebot";
import { NapCatCore } from "..";
import { ActionMap } from "@/onebot/action";
export const plugin_onmessage = async (adapter: string, core: NapCatCore, action: ActionMap, message: OB11Message) => {
if (message.raw_message === 'ping') {
const ret = await action.get('send_group_msg')?.handle({ group_id: message.group_id, message: 'pong' }, adapter);
console.log(ret);
}
}