20 lines
470 B
Java
20 lines
470 B
Java
package com.njcn.gateway;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
/**
|
|
* @author hongawen
|
|
* @version 1.0.0
|
|
* @date 2021年05月10日 14:03
|
|
*/
|
|
@EnableFeignClients
|
|
@SpringBootApplication
|
|
public class GatewayMain {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(GatewayMain.class,args);
|
|
}
|
|
}
|