mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
feat: plugin
This commit is contained in:
10
src/core/plugin/index.ts
Normal file
10
src/core/plugin/index.ts
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user