chore: 兼容guild api

This commit is contained in:
手瓜一十雪
2024-08-14 00:53:52 +08:00
parent 26ffec43fe
commit c8261555c4
5 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
export default class GetGuildList extends BaseAction<null, null> {
actionName = ActionName.GetGuildList;
async _handle(payload: null): Promise<null> {
return null;
}
}

View File

@@ -0,0 +1,10 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
export default class GetGuildProfile extends BaseAction<null, null> {
actionName = ActionName.GetGuildProfile;
async _handle(payload: null): Promise<null> {
return null;
}
}