2 天以前 8f3bf7050e65fdbe55eaad74fde307c57dab960e
1
2
3
4
5
6
7
8
9
10
11
12
13
package cn.iocoder.yudao.module.iot.gateway;
 
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@SpringBootApplication
public class IotGatewayServerApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(IotGatewayServerApplication.class, args);
    }
 
}