perf: 优化证书申请跳过的状态显示,成功通知现在在跳过时不会发送

This commit is contained in:
xiaojunnuo
2024-12-23 00:49:56 +08:00
parent faa28f88f9
commit 67d762b6a5
6 changed files with 51 additions and 38 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ export type PluginDefine = Registrable & {
export type ITaskPlugin = {
onInstance(): Promise<void>;
execute(): Promise<void>;
execute(): Promise<void | string>;
onRequest(req: PluginRequestHandleReq<any>): Promise<any>;
[key: string]: any;
};