Browse Source

调试指令使用单独的注解

master
白凤吉 2 months ago
parent
commit
b9c0fdd85e
  1. 3
      src/main/java/com/iflytop/sgs/app/controller/CmdDebugController.java

3
src/main/java/com/iflytop/sgs/app/controller/CmdDebugController.java

@ -1,6 +1,7 @@
package com.iflytop.sgs.app.controller;
import cn.hutool.json.JSONUtil;
import com.iflytop.sgs.app.core.CommandDebugHandlerRegistry;
import com.iflytop.sgs.app.core.CommandHandlerRegistry;
import com.iflytop.sgs.app.core.DebugGenerator;
import com.iflytop.sgs.app.model.dto.CmdDTO;
@ -26,7 +27,7 @@ import java.util.concurrent.CompletableFuture;
@RequiredArgsConstructor
@Slf4j
public class CmdDebugController {
private final CommandHandlerRegistry registry;
private final CommandDebugHandlerRegistry registry;
private final WebSocketSender webSocketService;
@Operation(summary = "前端调试指令")

Loading…
Cancel
Save