Helius
2021-06-08 30c1c9d16a57d2bbc7cd1511d02c5ddcc6a143f6
src/main/java/com/xcong/excoin/ExcoinApplication.java
@@ -21,17 +21,10 @@
@EnableAsync
@SpringBootApplication
@MapperScan("com.xcong.excoin.modules.*.dao")
public class ExcoinApplication implements CommandLineRunner {
    @Autowired
    private WebSocketServer webSocketServer;
public class ExcoinApplication {
    public static void main(String[] args) {
        SpringApplication.run(ExcoinApplication.class, args);
    }
    @Override
    public void run(String... args) throws Exception {
//        webSocketServer.start();
    }
}