mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-02 07:59:05 +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();
|
|
}
|
|
}
|