NapCatQQ/src/onebot/action/guild/GetGuildProfile.ts
2024-11-21 11:01:35 +08:00

11 lines
290 B
TypeScript

import { OneBotAction } from '@/onebot/action/OneBotAction';
import { ActionName } from '../types';
export class GetGuildProfile extends OneBotAction<null, null> {
actionName = ActionName.GetGuildProfile;
async _handle(payload: null): Promise<null> {
return null;
}
}