NapCatQQ/packages/napcat-onebot/action/system/SetRestart.ts
手瓜一十雪 60a9114495 Add action metadata to OneBot action classes
Added or updated actionSummary, actionTags, payloadExample, and returnExample properties for all OneBot action classes in the napcat-onebot package. This improves API documentation and discoverability by providing concise summaries, categorization tags, and usage examples for each action.
2026-01-25 19:19:03 +08:00

23 lines
796 B
TypeScript

import { ActionName } from '@/napcat-onebot/action/router';
import { OneBotAction } from '../OneBotAction';
import { WebUiDataRuntime } from 'napcat-webui-backend/src/helper/Data';
import { Type } from '@sinclair/typebox';
export class SetRestart extends OneBotAction<void, void> {
override actionName = ActionName.Reboot;
override payloadSchema = Type.Object({});
override returnSchema = Type.Null();
override actionSummary = '重启服务';
override actionDescription = '重启服务';
override actionTags = ['系统接口'];
override payloadExample = {};
override returnExample = null;
async _handle () {
const result = await WebUiDataRuntime.requestRestartProcess();
if (!result.result) {
throw new Error(result.message || '进程重启失败');
}
}
}