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