From cea9e11c838ab0601e6731dc0e5e93e2298cbc6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Thu, 6 Jun 2024 14:31:45 +0800 Subject: [PATCH] docs: add --- src/onebot11/action/go-cqhttp/GetOnlineClient.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/onebot11/action/go-cqhttp/GetOnlineClient.ts b/src/onebot11/action/go-cqhttp/GetOnlineClient.ts index 09d05fb0..3fab09e7 100644 --- a/src/onebot11/action/go-cqhttp/GetOnlineClient.ts +++ b/src/onebot11/action/go-cqhttp/GetOnlineClient.ts @@ -2,6 +2,7 @@ import { DeviceList } from '@/onebot11/main'; import BaseAction from '../BaseAction'; import { ActionName } from '../types'; import { JSONSchema } from 'json-schema-to-ts'; +import { NTQQSystemApi } from '@/core'; const SchemaData = { type: 'object', @@ -14,6 +15,7 @@ export class GetOnlineClient extends BaseAction> { actionName = ActionName.GetOnlineClient; protected async _handle(payload: void) { + //console.log(await NTQQSystemApi.getOnlineDev()); return DeviceList; } }