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