1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.iailab.module.shasteel;
|
| import org.springframework.boot.SpringApplication;
| import org.springframework.boot.autoconfigure.SpringBootApplication;
|
| /**
| * 项目的启动类
| *
| * @author iailab
| */
| @SpringBootApplication
| public class ShasteelServerApplication {
|
| public static void main(String[] args) {
| SpringApplication.run(ShasteelServerApplication.class, args);
| }
|
| }
|
|