add: GetEssenceMsg

This commit is contained in:
手瓜一十雪
2024-04-28 21:43:15 +08:00
parent 142fbdb484
commit 70d7fb7860
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { getGroup } from '@/core/data';
import { OB11Group } from '../../types';
import { OB11Constructor } from '../../constructor';
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
import { NTQQMsgApi } from '@/core/apis/msg';
interface PayloadType {
group_id: number
}
export class GetGroupEssence extends BaseAction<PayloadType, null> {
actionName = ActionName.GoCQHTTP_GetEssenceMsg;
protected async _handle(payload: PayloadType) {
//await NTQQMsgApi.GetEssenceMsg()
return null;
}
}