|
@@ -0,0 +1,10 @@
|
|
|
+package com.xy.feign;
|
|
|
+
|
|
|
+import com.xy.FeignInterceptor;
|
|
|
+import com.xy.consts.ServiceConsts;
|
|
|
+import com.xy.service.MsgSendApiService;
|
|
|
+import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+
|
|
|
+@FeignClient(value = ServiceConsts.SERVICE_NAME, configuration = FeignInterceptor.class)
|
|
|
+public interface MsgSendFeign extends MsgSendApiService {
|
|
|
+}
|