This commit is contained in:
手瓜一十雪
2024-10-14 22:13:41 +08:00
parent 10e281ed35
commit 7affa081ac
5 changed files with 32 additions and 3 deletions

View File

@@ -89,6 +89,7 @@ import { GetUserStatus } from './extends/GetUserStatus';
import { GetRkey } from './extends/GetRkey';
import { SetSpecialTittle } from './extends/SetSpecialTittle';
import { UploadForwardMsg } from "@/onebot/action/extends/UploadForwardMsg";
import { GetGroupShutList } from './group/GetGroupShutList';
export type ActionMap = Map<string, BaseAction<any, any>>;
@@ -190,6 +191,7 @@ export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCo
new GetRkey(obContext, core),
new SetSpecialTittle(obContext, core),
new UploadForwardMsg(obContext, core),
new GetGroupShutList(obContext, core),
];
const actionMap = new Map();
for (const action of actionHandlers) {