mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-03 16:59:08 +08:00
20 lines
538 B
TypeScript
20 lines
538 B
TypeScript
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;
|
|
}
|
|
}
|