数据桥
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
705 B

package com.huaxing;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class IotDataBridgeApplication {
public static void main(String[] args) {
SpringApplication.run(IotDataBridgeApplication.class, args);
String banner =
"===========================================\n" +
" 中联创信低碳科技有限公司 \n" +
" http://localhost:8088 \n" +
" iot-data-bridge started! \n" +
"===========================================\n";
System.out.println(banner);
}
}