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