NapCatQQ/packages/napcat-onebot/action/extends/GetRobotUinRange.ts
2025-11-13 15:10:47 +08:00

11 lines
345 B
TypeScript

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