Newer
Older
CosmosServer / src / main / java / com / example / cosmos_serversb / CosmosServerSbApplication.java
package com.example.cosmos_serversb;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;

import org.springframework.web.socket.config.annotation.EnableWebSocket;

@SpringBootApplication
@Configuration
@EnableWebSocket
public class CosmosServerSbApplication {
    public static void main(String[] args) {
        SpringApplication.run(CosmosServerSbApplication.class, args);
    }
}