Skip to content

Commit

Permalink
feat: 소켓 테스터 컨트롤러로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
redcarrot1 committed Jan 24, 2024
1 parent f560ac0 commit b93985e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
import org.springframework.web.socket.config.annotation.EnableWebSocket;
import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
import solution.gdsc.PathPal.domain.inference.api.WebSocketClientController;
import solution.gdsc.PathPal.SocketHandlerTest;

@Configuration
@EnableWebSocket
public class WebSocketConfiguration implements WebSocketConfigurer {

@Autowired
private WebSocketClientController clientInferenceController;
//private WebSocketClientController clientInferenceController;
private SocketHandlerTest clientInferenceController;

@Override
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
Expand Down

0 comments on commit b93985e

Please sign in to comment.