24 lines
629 B
Java
24 lines
629 B
Java
package com.bwie.auth;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
/**
|
|
* @ProjectName: week3-1129
|
|
* @PackageName: com.bwie.auth
|
|
* @Description TODO
|
|
* @Author LiYonJie
|
|
* @Date 2023/11/29
|
|
* @Version 1.0
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableDiscoveryClient
|
|
@EnableFeignClients
|
|
public class AuthApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AuthApplication.class);
|
|
}
|
|
}
|