Files
NapCatQQ/src/onebot/action/guild/GetGuildProfile.ts
2024-08-14 00:53:52 +08:00

11 lines
275 B
TypeScript

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;
}
}