22 lines
551 B
Java
22 lines
551 B
Java
package com.bwie.gateway;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
|
|
/**
|
|
* @ProjectName: cms
|
|
* @PackageName: com.bwie.gateway
|
|
* @Description TODO
|
|
* @Author LiYonJie
|
|
* @Date 2023/11/14
|
|
* @Version 1.0
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableDiscoveryClient
|
|
public class GatewayApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(GatewayApplication.class);
|
|
}
|
|
}
|