19 lines
473 B
Java
19 lines
473 B
Java
package com.bwie.auth;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
|
|
/**
|
|
* @Classname AuthApplication
|
|
* @Description TODO
|
|
* @Created by 杨旭飞
|
|
*/
|
|
@SpringBootApplication
|
|
@EnableFeignClients
|
|
public class AuthApplication {
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AuthApplication.class);
|
|
}
|
|
}
|