forked from gzzfw/backEnd/gz-dyh

xusd
2024-10-14 4b7df08def4e5d0cdfbe91c383de242f8121af86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.huge.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
 
 
@SpringBootApplication
//@EnableZuulProxy
@EnableEurekaClient
@EnableFeignClients
public class DyhGatewayApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(DyhGatewayApplication.class, args);
    }
 
 
}