| | |
| | | package cn.gistack.auth; |
| | | |
| | | |
| | | import cn.gistack.common.constant.AppsConstant; |
| | | import org.springblade.core.cloud.client.BladeCloudApplication; |
| | | import org.springblade.core.launch.BladeApplication; |
| | | import org.springblade.core.launch.constant.AppConstant; |
| | |
| | | * @author Chill |
| | | */ |
| | | @BladeCloudApplication |
| | | @EnableFeignClients(basePackages = "cn.gistack.system.user.feign") |
| | | @EnableFeignClients({"cn.gistack"}) |
| | | public class AuthApplication { |
| | | |
| | | public static void main(String[] args) { |
| | | BladeApplication.run(AppsConstant.APPLICATION_AUTH_NAME, AuthApplication.class, args); |
| | | BladeApplication.run(AppConstant.APPLICATION_AUTH_NAME, AuthApplication.class, args); |
| | | } |
| | | |
| | | } |