feat: try add get_group_system_msg

This commit is contained in:
手瓜一十雪
2024-05-18 16:58:46 +08:00
parent f6676802b8
commit 5786b9b244
45 changed files with 59 additions and 47 deletions

View File

@@ -0,0 +1,11 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
import { NTQQMsgApi } from '@/core/apis/msg';
export class GetGroupSystemMsg extends BaseAction<void, void> {
actionName = ActionName.GetGroupSystemMsg;
protected async _handle(payload: void) {
}
}

View File

@@ -77,5 +77,6 @@ export enum ActionName {
GoCQHTTP_DownloadFile = 'download_file',
GoCQHTTP_GetGroupMsgHistory = 'get_group_msg_history',
GoCQHTTP_GetForwardMsg = 'get_forward_msg',
GetFriendMsgHistory = 'get_friend_msg_history'
GetFriendMsgHistory = 'get_friend_msg_history',
GetGroupSystemMsg = "get_group_system_msg"
}