This commit is contained in:
手瓜一十雪
2024-04-28 18:21:36 +08:00
parent 4298c1775f
commit dc9d7f799f
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
interface PayloadType {
group_id: number
}
export class GetGroupNotice extends BaseAction<PayloadType, null> {
actionName = ActionName.GetGroupNotice;
protected async _handle(payload: PayloadType) {
const group = payload.group_id.toString();
// WebApi.getGrouptNotice(group);
return null;
}
}