mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 22:51:13 +00:00
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.
23 lines
796 B
TypeScript
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 || '进程重启失败');
|
|
}
|
|
}
|
|
}
|