mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-01 23:39:09 +08:00
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
|
|
export class GetRobotUinRange extends BaseAction<void, Array<any>> {
|
|
actionName = ActionName.GetRobotUinRange;
|
|
|
|
async _handle(payload: void) {
|
|
// console.log(await NTQQUserApi.getRobotUinRange());
|
|
const NTQQUserApi = this.CoreContext.apis.UserApi;
|
|
return await NTQQUserApi.getRobotUinRange();
|
|
}
|
|
}
|