luoyb
2024-05-05 44cca7956f99c8960fbdf877f78695221f8bcb17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cc.mrbird.febs.gateway;
 
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
 
/**
 * @author MrBird
 */
@SpringBootApplication
public class FebsGatewayApplication {
 
    public static void main(String[] args) {
        new SpringApplicationBuilder(FebsGatewayApplication.class)
                .web(WebApplicationType.REACTIVE)
                .run(args);
    }
}