This commit is contained in:
手瓜一十雪
2025-04-18 12:12:18 +08:00
parent b7da316447
commit c453b82e9f
3 changed files with 41 additions and 1 deletions

View File

@@ -114,6 +114,7 @@ import { TransGroupFile } from './extends/TransGroupFile';
import { RenameGroupFile } from './extends/RenameGroupFile';
import { GetRkeyServer } from './packet/GetRkeyServer';
import { GetRkeyEx } from './packet/GetRkeyEx';
import { CleanCache } from './system/CleanCache';
export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
@@ -241,6 +242,7 @@ export function createActionMap(obContext: NapCatOneBot11Adapter, core: NapCatCo
new ClickInlineKeyboardButton(obContext, core),
new GetPrivateFileUrl(obContext, core),
new GetUnidirectionalFriendList(obContext, core),
new CleanCache(obContext, core),
];
type HandlerUnion = typeof actionHandlers[number];