提交 | 用户 | 时间 | ||
e7c126 | 1 | package com.iailab.module.infra.framework.rpc.config; |
H | 2 | |
3 | import com.iailab.module.system.api.user.AdminUserApi; | |
4 | import org.springframework.cloud.openfeign.EnableFeignClients; | |
5 | import org.springframework.context.annotation.Configuration; | |
6 | ||
7 | @Configuration(proxyBeanMethods = false) | |
8 | @EnableFeignClients(clients = AdminUserApi.class) | |
9 | public class RpcConfiguration { | |
10 | } |