mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-11 23:40:24 +00:00
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
import { NTQQUserApi } from '@/core/apis';
|
|
export class GetRobotUinRange extends BaseAction<void, Array<any>> {
|
|
actionName = ActionName.GetRobotUinRange;
|
|
|
|
protected async _handle(payload: void) {
|
|
return await NTQQUserApi.getRobotUinRange();
|
|
}
|
|
}
|