import { OneBotAction } from '@/napcat-onebot/action/OneBotAction'; import { ActionName } from '@/napcat-onebot/action/router'; import { Type, Static } from '@sinclair/typebox'; export const GetStatusReturnSchema = Type.Object({ online: Type.Boolean({ description: '是否在线' }), good: Type.Boolean({ description: '状态是否良好' }), stat: Type.Unknown({ description: '统计信息' }), }); export type GetStatusReturnType = Static; export default class GetStatus extends OneBotAction { override actionName = ActionName.GetStatus; override payloadSchema = Type.Object({}); override returnSchema = GetStatusReturnSchema; override actionSummary = '获取运行状态'; override actionDescription = '获取运行状态'; override actionTags = ['系统接口']; override payloadExample = {}; override returnExample = { online: true, good: true, stat: {} }; async _handle (): Promise { return { online: !!this.core.selfInfo.online, good: true, stat: {}, }; } }