提交 | 用户 | 时间 | ||
a6de49 | 1 | package com.iailab; |
H | 2 | |
3 | import org.springframework.boot.SpringApplication; | |
4 | import org.springframework.boot.autoconfigure.SpringBootApplication; | |
5 | ||
6 | @SpringBootApplication | |
7 | public class DataWebApplication { | |
8 | ||
9 | ||
10 | public static void main(String[] args) { | |
11 | SpringApplication.run(DataWebApplication.class, args); | |
12 | } | |
13 | ||
14 | } |