leutu
2024-05-08 7922905e4987789b636abdce1a240f4cee7c971b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.terra.lfdcexp;
 
import com.terra.lfdcexp.config.WebSocketC;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
 
@SpringBootApplication
@EnableSwagger2
public class LfdcexpApplication {
 
//    @Autowired
//    WebSocketC webSocketC;
    public static void main(String[] args) {
        SpringApplication.run(LfdcexpApplication.class, args);
    }
 
}