mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-10 22:19:06 +08:00
11 lines
345 B
TypeScript
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();
|
|
}
|
|
}
|