- package com.zhongshu.iot.client.config;
- import org.springframework.cloud.openfeign.EnableFeignClients;
- import org.springframework.context.annotation.ComponentScan;
- import org.springframework.context.annotation.Configuration;
- @Configuration
- @EnableFeignClients("com.zhongshu.iot.client.service")
- @ComponentScan({"com.zhongshu.iot.client"})
- public class OneCardIotClientConfiguration {
- }
|