package cn.minbb.iot.controller.rest; import cn.minbb.iot.service.MqttGateway; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping public class IoTController { private MqttGateway mqttGateway; public IoTController(MqttGateway mqttGateway) { this.mqttGateway = mqttGateway; } }