16 lines
350 B
Java
16 lines
350 B
Java
package com.muyu.mqttmessage.config;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
/**
|
|
* @ClassName DataAccessClientConfig
|
|
* @Description 描述
|
|
* @Author Xin.Yao
|
|
* @Date 2024/5/9 19:52
|
|
*/
|
|
@ComponentScan
|
|
@Import({MqttMessageRunner.class})
|
|
public class MqttMessageConfig {
|
|
}
|