import BaseAction from '../BaseAction'; import { ActionName } from '../types'; export default class GetGuildList extends BaseAction { actionName = ActionName.GetGuildList; protected async _handle(payload: null): Promise { return null; } }