IoTController.java 407 B

12345678910111213141516
  1. package cn.minbb.iot.controller.rest;
  2. import cn.minbb.iot.service.MqttGateway;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. @RequestMapping
  7. public class IoTController {
  8. private MqttGateway mqttGateway;
  9. public IoTController(MqttGateway mqttGateway) {
  10. this.mqttGateway = mqttGateway;
  11. }
  12. }