Helius
2021-06-04 2e57ef64fed2e9c12cc7d673c31624a06bc0efe2
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();
    }
}