import { OneBotAction } from '@/onebot/action/OneBotAction'; import { ActionName } from '@/onebot/action/router'; export class GetRobotUinRange extends OneBotAction> { actionName = ActionName.GetRobotUinRange; async _handle() { return await this.core.apis.UserApi.getRobotUinRange(); } }