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