mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-30 05:29:02 +08:00
11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
import { OneBotAction } from '@/onebot/action/OneBotAction';
|
|
import { ActionName } from '@/onebot/action/router';
|
|
|
|
export class GetRobotUinRange extends OneBotAction<void, Array<any>> {
|
|
actionName = ActionName.GetRobotUinRange;
|
|
|
|
async _handle() {
|
|
return await this.core.apis.UserApi.getRobotUinRange();
|
|
}
|
|
}
|